summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-08-08 08:32:31 +0200
committerTyge Løvset <[email protected]>2022-08-08 08:32:31 +0200
commit3b548336d109e8d17b048da075a2ca9019a63280 (patch)
tree3c37f17434d7d28983793446c161c978e519d93e /README.md
parent9e529c1ba7e575881656265b468b35863ae9e82a (diff)
downloadSTC-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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 29c28a4f..a3ffebfa 100644
--- a/README.md
+++ b/README.md
@@ -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) {