diff options
| author | Tyge Løvset <[email protected]> | 2022-08-08 08:32:31 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-08-08 08:32:31 +0200 |
| commit | 3b548336d109e8d17b048da075a2ca9019a63280 (patch) | |
| tree | 3c37f17434d7d28983793446c161c978e519d93e /README.md | |
| parent | 9e529c1ba7e575881656265b468b35863ae9e82a (diff) | |
| download | STC-modified-3b548336d109e8d17b048da075a2ca9019a63280.tar.gz STC-modified-3b548336d109e8d17b048da075a2ca9019a63280.zip | |
Reverted `{{` to `{ {` in documentation as markdown treats it special.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -207,8 +207,8 @@ int main(void) { c_auto (csmap_int, map) { int nums[4] = {10, 20, 30, 40}; - struct Point pts[4] = {{10, 1}, {20, 2}, {30, 3}, {40, 4}}; - int pairs[4][2] = {{20, 2}, {10, 1}, {30, 3}, {40, 4}}; + struct Point pts[4] = { {10, 1}, {20, 2}, {30, 3}, {40, 4} }; + int pairs[4][2] = { {20, 2}, {10, 1}, {30, 3}, {40, 4} }; /* add some elements to each container */ for (int i = 0; i < 4; ++i) { |
