OSDN Git Service

Regular updates
authorErik <erikgronwal@users.osdn.me>
Sat, 25 Feb 2023 14:55:05 +0000 (23:55 +0900)
committerErik <erikgronwal@users.osdn.me>
Sat, 25 Feb 2023 14:55:05 +0000 (23:55 +0900)
vimscript.md

index 2174cea..1b241a9 100644 (file)
@@ -447,7 +447,7 @@ map(dict, '<>> " . v:val')
 
 ```vim
 for key in keys(mydict)
-  echo key . ': ' . mydict(key)
+  echo key . ': ' . mydict[key]
 endfor
 ```