summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-03-05 10:27:14 +0100
committerGitHub <[email protected]>2020-03-05 10:27:14 +0100
commitd8856ef64b4155f9c7aa7fda8d720cac11c78386 (patch)
treeb823f4fd9dc6965fc666eacfcd2e0fd559ae5cb8
parent0e686db1da455bb73e07cae52ca50da240f07d76 (diff)
downloadSTC-modified-d8856ef64b4155f9c7aa7fda8d720cac11c78386.tar.gz
STC-modified-d8856ef64b4155f9c7aa7fda8d720cac11c78386.zip
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index f6f944a8..49b98581 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.item->changed ? "yes" : "no");
cmap_si_destroy(&nums);
```