From ff299f2de10fc84f089c0e59bd1702ed4b75c87a Mon Sep 17 00:00:00 2001 From: Tyge Løvset <60263450+tylov@users.noreply.github.com> Date: Sat, 20 Jun 2020 21:49:29 +0200 Subject: Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9e2315d7..5221d4d8 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ declare_CHash(64, set, int64_t); Usage by examples ----------------- -CString demo +**CString** *demo* ``` #include @@ -68,7 +68,7 @@ int main() { cstring_destroy(&cs); } ``` -Simple CVector of 64bit int +**CVector** of *int64_t* ``` #include declare_CVector(ix, int64_t); // ix is just an example tag name, use anything without underscore. @@ -86,7 +86,7 @@ int main() { cvector_ix_destroy(&bignums); } ``` -CVector of CString +**CVector** of *CString* ``` #include #include @@ -102,7 +102,7 @@ int main() { cvector_cs_destroy(&names); } ``` -CHash map of int -> int +**CHash map** of *int -> int* ``` #include declare_CHash(ii, map, int, int); @@ -116,7 +116,7 @@ int main() { chash_ii_destroy(&nums); } ``` -CHash set of CString +**CHash set** of *CString* ``` #include #include @@ -135,7 +135,7 @@ int main() { chash_s_destroy(&words); } ``` -CHash map of CString -> CString. Temporary CString values are created by "make", and moved to the container +**CHash map** of *CString -> CString*. Temporary CString values are created by "make", and moved to the container ``` #include #include -- cgit v1.2.3