summary refs log tree commit diff stats
path: root/doc/nimc.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-02-16 02:56:40 +0100
committerAraq <rumpf_a@web.de>2015-02-16 02:56:40 +0100
commiteaf00dd1fb3ea9da72a774d06ea561d0533ff47a (patch)
tree5dc7851ccbbdfe74c973810e6e151075178f2007 /doc/nimc.txt
parent442dc30922c226b8e5f82630bc76fa877dce1536 (diff)
downloadNim-eaf00dd1fb3ea9da72a774d06ea561d0533ff47a.tar.gz
minor documentation updates
Diffstat (limited to 'doc/nimc.txt')
-rw-r--r--doc/nimc.txt2
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