summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-06-22 21:01:35 +0200
committerGitHub <[email protected]>2020-06-22 21:01:35 +0200
commit2dfe495c18e25f19c5cb7beb58ceacc7d0af2729 (patch)
treeac7d571eb28de0adbe8dffe013e681a7c4c7e40a
parentc849f70e2f1b2135a5466ddbef6726e90c780cd4 (diff)
downloadSTC-modified-2dfe495c18e25f19c5cb7beb58ceacc7d0af2729.tar.gz
STC-modified-2dfe495c18e25f19c5cb7beb58ceacc7d0af2729.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 fb1004e6..c0db1cf1 100644
--- a/README.md
+++ b/README.md
@@ -121,10 +121,10 @@ Note that this customization is also available for **CVector**, but only affects
Demos
-----
-The first example has a complex nested container type, which demonstrates some of the capability of the library. Look at the simpler examples below to understand it better. The example adds an element into the data structure, and then accesses it. The type used, with c++ template syntax is:
+The first example has a complex nested container type, which demonstrates some of the capabilities of the library. Look at the simpler examples below to understand it better. The example adds an element into the data structure, and then accesses it. The type used, with c++ template syntax is:
**CHashMap**< **CString**, **CHashMap**< *int*, **CList**< **CArray2**< *float* >>>>
-Note that *chash_sm_destroy(&theMap)* below, will also destroy all the nested containers including the memory allocated for CString keys in theMap object.
+Note: The *chash_sm_destroy(&theMap)* call below, will destroy all the nested containers including the memory allocated for CString keys in theMap object.
```
#include "stc/cstring.h"
#include "stc/chash.h"