summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-03-13 23:51:17 +0100
committerGitHub <[email protected]>2020-03-13 23:51:17 +0100
commit98bc73eef50f051cbe67f3ce44a849d228b1f1ae (patch)
tree478a36607bf35c6a44ae766291560d6362ad9579
parent0e49e993e9b377843e363e1f93cde176e5c7ce4f (diff)
downloadSTC-modified-98bc73eef50f051cbe67f3ce44a849d228b1f1ae.tar.gz
STC-modified-98bc73eef50f051cbe67f3ce44a849d228b1f1ae.zip
Update EXAMPLE.md
-rw-r--r--EXAMPLE.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/EXAMPLE.md b/EXAMPLE.md
index dae5182f..4998e402 100644
--- a/EXAMPLE.md
+++ b/EXAMPLE.md
@@ -63,7 +63,8 @@ int main()
// ...
c_foreach (it, cmap_mm, m6) {
if (cstring_equals(it.item->key.first, "John"))
- printf("%s %s %d -> %s\n", it.item->key.first.str, it.item->key.second.str, it.item->key.third, it.item->value.str);
+ printf("%s %s %d -> %s\n", it.item->key.first.str, it.item->key.second.str, it.item->key.third,
+ it.item->value.str);
}
cmap_mm_destroy(&m6);