summaryrefslogtreecommitdiff
path: root/runtime/doc/usr_41.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-09 21:21:04 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-09 21:21:04 +0000
commit76db9e076318cb0ae846f43b7549ad4f2d234c0b (patch)
treec95eed792e5ed22eb9d632fd2a9eb2344f662d12 /runtime/doc/usr_41.txt
parent0fd7be7f951b639312c9cb3917c7e61ba3b55a60 (diff)
downloadvim-git-76db9e076318cb0ae846f43b7549ad4f2d234c0b.tar.gz
Update runtime files
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r--runtime/doc/usr_41.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 1d5c7e58a..e449003a5 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -139,7 +139,7 @@ FOUR KINDS OF NUMBERS
Numbers can be decimal, hexadecimal, octal and binary.
A hexadecimal number starts with "0x" or "0X". For example "0x1f" is decimal
-31 and 0x1234 is decimal 4660.
+31 and "0x1234" is decimal 4660.
An octal number starts with "0o", "0O". "0o17" is decimal 15.
@@ -687,7 +687,7 @@ search() function uses its first argument as a search pattern and the second
one as flags. The "W" flag means the search doesn't wrap around the end of
the file.
-Using the `call` command is optional in |Vim9| script. It is required in
+Using the `call` command is optional in |Vim9| script. It is required in
legacy script and on the command line: >
call search("Date: ", "W")