diff options
| author | Tyge Løvset <[email protected]> | 2020-08-04 14:08:49 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-08-04 14:08:49 +0200 |
| commit | a5a575cd4b50666dada38ae9fd897f459071c974 (patch) | |
| tree | ff221582fddfe22458de6aa73ed2fec6649c8d66 /examples | |
| parent | 7abc705e0ad23165852af06bc3f4806b43bc3311 (diff) | |
| download | STC-modified-a5a575cd4b50666dada38ae9fd897f459071c974.tar.gz STC-modified-a5a575cd4b50666dada38ae9fd897f459071c974.zip | |
Fix markdown error.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/README.md | 6 |
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);
|
