diff options
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/eval.txt | 4 | ||||
-rw-r--r-- | runtime/doc/quickref.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 3fd0d96f21..63a5b69070 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -455,8 +455,8 @@ only appear once. Examples: > A key is always a String. You can use a Number, it will be converted to a String automatically. Thus the String '4' and the number 4 will find the same entry. Note that the String '04' and the Number 04 are different, since the -Number will be converted to the String '4'. The empty string can also be used -as a key. +Number will be converted to the String '4', leading zeros are dropped. The +empty string can also be used as a key. *literal-Dict* To avoid having to put quotes around every key the #{} form can be used. This does require the key to consist only of ASCII letters, digits, '-' and '_'. diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt index c3badd5401..961d734bfe 100644 --- a/runtime/doc/quickref.txt +++ b/runtime/doc/quickref.txt @@ -1269,7 +1269,7 @@ Context-sensitive completion on the command-line: |CTRL-W_^| CTRL-W ^ split window and edit alternate file |CTRL-W_n| CTRL-W n or :new create new empty window |CTRL-W_q| CTRL-W q or :q[uit] quit editing and close window -|CTRL-W_c| CTRL-W c or :cl[ose] make buffer hidden and close window +|CTRL-W_c| CTRL-W c or :clo[se] make buffer hidden and close window |CTRL-W_o| CTRL-W o or :on[ly] make current window only one on the screen |