]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): update documentation
authorHirohito Higashi <h.east.727@gmail.com>
Mon, 21 Apr 2025 17:39:15 +0000 (19:39 +0200)
committerChristian Brabandt <cb@256bit.org>
Mon, 21 Apr 2025 17:39:15 +0000 (19:39 +0200)
closes: #17180

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/usr_41.txt
runtime/doc/vim9class.txt

index eca836281cc87ae0cb02b83871ec1abc70a27bc3..0c24b8469f91c1891785669bd183dc05c369e757 100644 (file)
@@ -1111,7 +1111,7 @@ Command line:                                     *command-line-functions*
        getcmdwintype()         return the current command-line window type
        getcompletion()         list of command-line completion matches
        fullcommand()           get full command name
-       cmdcomplete_info()      get current completion information
+       cmdcomplete_info()      get command-line completion information
 
 Quickfix and location lists:                   *quickfix-functions*
        getqflist()             list of quickfix errors
index 519545677c0768e4423fd201a8f4b0946bef4885..d2f43aefb2b3aa9332b2833859693cb993d6a7a3 100644 (file)
@@ -1,4 +1,4 @@
-*vim9class.txt*        For Vim version 9.1.  Last change: 2025 Apr 13
+*vim9class.txt*        For Vim version 9.1.  Last change: 2025 Apr 21
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1067,8 +1067,7 @@ The above enum definition is equivalent to the following class definition: >
       public const ordinal: number
     endclass
 <
-A enum can contain object variables and methods just like a regular
-class: >
+A enum can contain object variables and methods just like a regular class: >
 
     enum Color
        Cyan([0, 255, 255]),