-*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
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.
-*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
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,