summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-03-05 09:55:26 +0100
committerGitHub <[email protected]>2020-03-05 09:55:26 +0100
commit7c59ad49281dcc2e0cd824fd1b51a8b3a6f1a32a (patch)
tree70bf436331d3390940af919664da799b2d5bc922
parentcdf515545ac79da1c055f24b91eba30ee2d0695d (diff)
downloadSTC-modified-7c59ad49281dcc2e0cd824fd1b51a8b3a6f1a32a.tar.gz
STC-modified-7c59ad49281dcc2e0cd824fd1b51a8b3a6f1a32a.zip
Update README.md
-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);