aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2020-02-29 17:37:15 -0800
committerJustin M. Keyes <justinkz@gmail.com>2020-02-29 17:37:15 -0800
commit1b0a7703406328f90edd907880fc4a3dbd1d7087 (patch)
tree5b5f273ce48f4c670e6223fd4b4559bcc645f603 /runtime
parent6fcab7e758f3826b94ab369452b71d15a67c8b36 (diff)
parent3c12ee333a519c5be1d8f63d7978b483a51a3da7 (diff)
downloadrneovim-1b0a7703406328f90edd907880fc4a3dbd1d7087.tar.gz
rneovim-1b0a7703406328f90edd907880fc4a3dbd1d7087.tar.bz2
rneovim-1b0a7703406328f90edd907880fc4a3dbd1d7087.zip
Merge #11805 'vim-patch:8.1.0619'
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 113a92d5e4..ce0218f1dd 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -10370,8 +10370,8 @@ text...
The parsing works slightly different from |:echo|,
more like |:execute|. All the expressions are first
evaluated and concatenated before echoing anything.
- The expressions must evaluate to a Number or String, a
- Dictionary or List causes an error.
+ If expressions does not evaluate to a Number or
+ String, string() is used to turn it into a string.
Uses the highlighting set by the |:echohl| command.
Example: >
:echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see."
@@ -10382,7 +10382,7 @@ text...
message in the |message-history|. When used in a
script or function the line number will be added.
Spaces are placed between the arguments as with the
- :echo command. When used inside a try conditional,
+ |:echomsg| command. When used inside a try conditional,
the message is raised as an error exception instead
(see |try-echoerr|).
Example: >