Update runtime files.
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index d72e689..04d536c 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -946,7 +946,7 @@
of the expression contains the separation character.
Examples: >
- :s@\n@\="\r" . expand("$HOME") . "\r"@
+ :s@\n@\="\r" .. expand("$HOME") .. "\r"@
This replaces an end-of-line with a new line containing the value of $HOME. >
s/E/\="\<Char-0x20ac>"/g
@@ -1123,7 +1123,7 @@
the command. You need to escape the '|' and '"'
characters to prevent them from terminating the
command. Example: >
- :put ='path' . \",/test\"
+ :put ='path' .. \",/test\"
< If there is no expression after '=', Vim uses the
previous expression. You can see it with ":dis =".