]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Fix typos in markdown READMEs
authorBozhidar Batsov <bozhidar@batsov.dev>
Fri, 13 Feb 2026 16:08:24 +0000 (16:08 +0000)
committerChristian Brabandt <cb@256bit.org>
Fri, 13 Feb 2026 16:08:24 +0000 (16:08 +0000)
closes: #19394

Signed-off-by: Bozhidar Batsov <bozhidar@batsov.dev>
Signed-off-by: Christian Brabandt <cb@256bit.org>
README_VIM9.md
runtime/pack/dist/opt/netrw/README.md
runtime/syntax/generator/README.md

index c9ce73a2d1ffaa3f116b104cfb12b38a4d3d95eb..7442b0bcdc0c168c5abf2a4441d1801e9225a8a5 100644 (file)
@@ -28,7 +28,7 @@ way:
 * Local variables are not available in an l: dictionary.
 * A few more things that slow us down, such as exception handling details.
 
-I Implemented a "proof of concept" and measured the time to run a simple
+I implemented a "proof of concept" and measured the time to run a simple
 for loop with an addition (Justin used this example in his presentation,
 full code is below):
 
@@ -224,7 +224,7 @@ Eventually this will lead to Vim 9!
 
 ## Code for sum time measurements
 
-Vim was build with -O2.
+Vim was built with -O2.
 
 ``` vim
 func VimOld()
index 3677cf6cda124098cd2623fbefe8f513ca564b65..4b139f624967e2ea7613e42c2a7d5fcc726690c5 100644 (file)
@@ -30,7 +30,7 @@ Changes made to `autoload/netrw.vim`:
 - 2024 May 13 by Vim Project: prefer scp over pscp
 - 2024 Jun 04 by Vim Project: set bufhidden if buffer changed, nohidden is set and buffer shall be switched (#14915)
 - 2024 Jun 13 by Vim Project: glob() on Windows fails when a directory name contains [] (#14952)
-- 2024 Jun 23 by Vim Project: save ad restore registers when liststyle = WIDELIST (#15077, #15114)
+- 2024 Jun 23 by Vim Project: save and restore registers when liststyle = WIDELIST (#15077, #15114)
 - 2024 Jul 22 by Vim Project: avoid endless recursion (#15318)
 - 2024 Jul 23 by Vim Project: escape filename before trying to delete it (#15330)
 - 2024 Jul 30 by Vim Project: handle mark-copy to same target directory (#12112)
@@ -505,7 +505,7 @@ General changes made to netrw:
                Dec 24, 2013    * (esquifit) asked that netrw allow the
                                  /cygdrive prefix be a user-alterable
                                  parameter.
-               Jan 02, 2014    * Fixed a problem with netrw-based ballon
+               Jan 02, 2014    * Fixed a problem with netrw-based balloon
                                  evaluation (ie. netrw#NetrwBaloonHelp()
                                  not having been loaded error messages)
                Jan 03, 2014    * Fixed a problem with tree listings
index 73623721514c16faa1bf421c01558151eb0599b5..6db445ced260d27f5c64612b703e3bc8edbf5345 100644 (file)
@@ -3,7 +3,7 @@
 This directory contains a Vim script generator, that will parse the Vim source file and
 generate a vim.vim syntax file.
 
-Files in this directory where copied from https://github.com/vim-jp/syntax-vim-ex/
+Files in this directory were copied from https://github.com/vim-jp/syntax-vim-ex/
 and included here on Feb, 13th, 2024 for the Vim Project.
 
 - Maintainer: Hirohito Higashi