diff runtime/doc/vim9class.txt @ 33434:484543479bd7

runtime(doc): fix typos. Commit: https://github.com/vim/vim/commit/ba77bbb5c775663a8b55871f753d7b1b570bb9ba Author: h_east <h.east.727@gmail.com> Date: Tue Oct 3 04:47:13 2023 +0900 runtime(doc): fix typos. * Fix typo in document (Related: https://github.com/vim/vim/issues/12516) * Fix E1363 duplication * Fix one more typo. Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Oct 2023 22:00:05 +0200
parents 97ceabebaeaf
children 33593174288b
line wrap: on
line diff
--- a/runtime/doc/vim9class.txt
+++ b/runtime/doc/vim9class.txt
@@ -304,7 +304,7 @@ as the first character in the name, and 
 							*class-method*
 Class methods are also declared with "static".  They can use the class
 variables but they have no access to the object variables, they cannot use the
-"this" keyword.
+"this" keyword:
 >
 	class OtherThing
 	   this.size: number
@@ -656,7 +656,7 @@ When a variable is declared to have the 
 initialized, the value is null.  When trying to use this null object Vim often
 does not know what class was supposed to be used.  Vim then cannot check if
 a variable name is correct and you will get an "Using a null object" error,
-even when the variable name is invalid. *E1360* *E1362* *E1363*
+even when the variable name is invalid. *E1360* *E1362*
 
 
 Default constructor ~