]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Wrap some overlength lines in vim9{,class}.txt.
authorDoug Kearns <dougkearns@gmail.com>
Tue, 11 Nov 2025 16:47:24 +0000 (16:47 +0000)
committerChristian Brabandt <cb@256bit.org>
Tue, 11 Nov 2025 16:47:24 +0000 (16:47 +0000)
closes: #18724

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/vim9.txt
runtime/doc/vim9class.txt

index 6e65ca064cfb2b7cbf1a851ee988184d760e8aa2..c84c89ac6f43336828ad96c3d01e74211dc8efab 100644 (file)
@@ -1,4 +1,4 @@
-*vim9.txt*     For Vim version 9.1.  Last change: 2025 Nov 10
+*vim9.txt*     For Vim version 9.1.  Last change: 2025 Nov 11
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -3062,7 +3062,8 @@ much overhead that cannot be avoided.
 Therefore the `:def` method to define a new-style function had to be added,
 which allows for a function with different semantics.  Most things still work
 as before, but some parts do not.  A new way to define a function was
-considered the best way to separate the legacy style code from Vim9 style code.
+considered the best way to separate the legacy style code from Vim9 style
+code.
 
 Using "def" to define a function comes from Python.  Other languages use
 "function" which clashes with legacy Vim script.
index 3d581842246fa3659f4b2f2e71c7000a9d238a42..98c04d30202f6011eb0704283b1f68fa39f6d790 100644 (file)
@@ -1,4 +1,4 @@
-*vim9class.txt*        For Vim version 9.1.  Last change: 2025 Nov 10
+*vim9class.txt*        For Vim version 9.1.  Last change: 2025 Nov 11
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -661,8 +661,8 @@ The basic idea is to build on top of an existing class, add properties to it.
 The extended class is called the "base class" or "super class".  The new class
 is called the "child class".
 
-Object variables from the base class are all taken over by the child class.  It
-is not possible to override them (unlike some other languages).
+Object variables from the base class are all taken over by the child class.
+It is not possible to override them (unlike some other languages).
 
                                                *E1356* *E1357* *E1358*
 Object methods of the base class can be overruled.  The signature (arguments,