summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 942d4b1b..5121b629 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ for (cmap_si_iter_t i = cmap_si_begin(nums); i.item != cmap_si_end(nums).item; i
// or rather use the short form:
cforeach (i, cmap_si, nums)
- printf("%s: %d, changed: %s\n", i.item->key.str, i.item->value, i->changed ? "yes" : "no");
+ printf("%s: %d, changed: %s\n", i.item->key.str, i.item->value, i.changed ? "yes" : "no");
cmap_si_destroy(&nums);
```