summaryrefslogtreecommitdiffstats
path: root/runtime/doc/usr_41.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-12 14:29:27 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-12 14:29:27 +0000
commit4399ef4764584a24080670b4869cb8b5d31a4f78 (patch)
treec47e4671d16eeeadc9aa0b9a9cb19576e7c653b9 /runtime/doc/usr_41.txt
parentb11bd7e43f6cdca944dceebaa3c8012d6bf1a74e (diff)
updated for version 7.0050
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r--runtime/doc/usr_41.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 74c74fdb7c..638a158e64 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1,4 +1,4 @@
-*usr_41.txt* For Vim version 7.0aa. Last change: 2005 Feb 07
+*usr_41.txt* For Vim version 7.0aa. Last change: 2005 Feb 08
VIM USER MANUAL - by Bram Moolenaar
@@ -1087,7 +1087,7 @@ know the key. A Dictionary is created with curly braces: >
:let uk2nl = {'one': 'een', 'two': 'twee', 'three': 'drie'}
-Now you can lookup words by putting the key in square brakets: >
+Now you can lookup words by putting the key in square brackets: >
:echo uk2nl['two']
< twee ~
@@ -1185,7 +1185,7 @@ Is equivalent to: >
The get() function checks if a key is present in a Dictionary. If it is, then
the value is retrieved. If it isn't, then the default value is returned, in
-the example it's '???'. This is a covenient way to handle situations where a
+the example it's '???'. This is a convenient way to handle situations where a
key may not be present and you don't want an error message.
The join() function does the opposite of split(): it joins together a list of