summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-01-20 23:30:07 +0100
committerGitHub <[email protected]>2021-01-20 23:30:07 +0100
commitcbfbdcc7bff425e19a1a36666ac9eba3a829d544 (patch)
tree607f75a427eb78b7b1d29e626227c51a75ee7752
parentf3901fb16ff2ffa71b73fcd80b13f66d25ba0702 (diff)
downloadSTC-modified-cbfbdcc7bff425e19a1a36666ac9eba3a829d544.tar.gz
STC-modified-cbfbdcc7bff425e19a1a36666ac9eba3a829d544.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 1f20697d..a12a3d52 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ Others:
The usage of the containers is similar to the C++ standard containers in STL, so it should be easy if you are familiar with them.
-All containers mentioned above, except cstr_t and cbits_t, are generic and therefore typesafe (similar to templates in C++).
+All containers mentioned above are generic, except for **cstr** and **cbits**, and are therefore typesafe like templates in C++.
No casting is used. A simple example:
```c
#include <stc/cvec.h>
@@ -49,7 +49,7 @@ int main(void) {
cvec_i_del(&vec);
}
```
-And five more containers...
+And with five containers...
```c
#include <stc/cmap.h>
#include <stc/csmap.h>