summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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);