summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 14d5919b..5d18a3ca 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ The library has a very intuitive and straight forward API, and as mentioned is f
Usage
-----
-Simple CVector:
+Simple CVector of 64bit ints:
```
#include "cvector.h"
declare_CVector(ix, int64_t); // ix is just an example tag name, use anything without underscore.
@@ -71,7 +71,7 @@ cforeach (i, cmap_si, nums)
cmap_si_destroy(&nums);
```
-CMap with CString keys, and CString values. Temporary values are created by "make", and moved to the container.
+CMap with CString keys -> CString values. Temporary values are created by "make", and moved to the container.
```
#include "cmap.h"
declare_CMap_STR(ss, CString, cstring_destroy);