summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-08-04 14:08:49 +0200
committerTyge Løvset <[email protected]>2020-08-04 14:08:49 +0200
commita5a575cd4b50666dada38ae9fd897f459071c974 (patch)
treeff221582fddfe22458de6aa73ed2fec6649c8d66 /examples
parent7abc705e0ad23165852af06bc3f4806b43bc3311 (diff)
downloadSTC-modified-a5a575cd4b50666dada38ae9fd897f459071c974.tar.gz
STC-modified-a5a575cd4b50666dada38ae9fd897f459071c974.zip
Fix markdown error.
Diffstat (limited to 'examples')
-rw-r--r--examples/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/README.md b/examples/README.md
index 589caddf..27307372 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -63,9 +63,9 @@ Finally, main which also demos the generic c_push() of multiple elements:
int main() {
cmap_vk vikings = cmap_init;
c_push(&vikings, cmap_vk, c_items(
- {{"Einar", "Norway"}, 20},
- {{"Olaf", "Denmark"}, 24},
- {{"Harald", "Iceland"}, 12},
+ { {"Einar", "Norway"}, 20 },
+ { {"Olaf", "Denmark"}, 24 },
+ { {"Harald", "Iceland"}, 12 },
));
VikingVw look = {"Einar", "Norway"};
cmap_vk_entry_t *e = cmap_vk_find(&vikings, look);