diff options
author | Araq <rumpf_a@web.de> | 2015-02-16 02:56:40 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-02-16 02:56:40 +0100 |
commit | eaf00dd1fb3ea9da72a774d06ea561d0533ff47a (patch) | |
tree | 5dc7851ccbbdfe74c973810e6e151075178f2007 /doc/nimc.txt | |
parent | 442dc30922c226b8e5f82630bc76fa877dce1536 (diff) | |
download | Nim-eaf00dd1fb3ea9da72a774d06ea561d0533ff47a.tar.gz |
minor documentation updates
Diffstat (limited to 'doc/nimc.txt')
-rw-r--r-- | doc/nimc.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/nimc.txt b/doc/nimc.txt index 84d596e3c..c5d5dea5a 100644 --- a/doc/nimc.txt +++ b/doc/nimc.txt @@ -569,7 +569,7 @@ language for object types: type StdMap {.importcpp: "std::map", header: "<map>".} [K, V] = object proc `[]=`[K, V](this: var StdMap[K, V]; key: K; val: V) {. - importcpp: "#[#] = #".} + importcpp: "#[#] = #", header: "<map>".} var x: StdMap[cint, cdouble] x[6] = 91.4 |