Re: [patch] fixed typos in doc of vim-8.2.1673

2020-09-13 Thread Bram Moolenaar


Dominique wrote:

> Attached patch fixes typos in documentation
> of Vim-8.2.1673.

Thanks.

-- 
Why don't cannibals eat clowns?
Because they taste funny.

 /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net   \\\
///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org///
 \\\help me help AIDS victims -- http://ICCF-Holland.org///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/202009131658.08DGwPTt1410162%40masaka.moolenaar.net.


Re: [patch] fixed typos in doc of vim-8.2.1673

2020-09-12 Thread Charles Campbell

Dominique Pellé wrote:

Hi

Attached patch fixes typos in documentation
of Vim-8.2.1673.

I don't know, I rather like the idea of a re-tuned dictionary!  Like a 
guitar...

Chip Campbell

--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups "vim_dev" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/add44a98-c840-8c49-bb13-6264df78865c%40drchip.org.


[patch] fixed typos in doc of vim-8.2.1673

2020-09-12 Thread Dominique Pellé
Hi

Attached patch fixes typos in documentation
of Vim-8.2.1673.

Regards
Dominique

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/CAON-T_i-f5YYATWOVHkbGWB6-aWQ1reuHH9rhCouTVJK%3Dv-vaQ%40mail.gmail.com.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 68884ba1e..690f045af 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -5489,7 +5489,7 @@ getmarklist([{expr}])	*getmarklist()*
 		local marks defined in buffer {expr}.  For the use of {expr},
 		see |bufname()|.
 
-		Each item in the retuned List is a |Dict| with the following:
+		Each item in the returned List is a |Dict| with the following:
 		name - name of the mark prefixed by "'"
 		pos - a |List| with the position of the mark:
 [bufnum, lnum, col, off]
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index bd05ecf62..1d543d2a4 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -292,7 +292,7 @@ Terminal emulator window:
 Error numbers available: E653
 
 Patch to implement the vimtutor with a plugin: #6414
-Was originally writtten by Felipe Morales.
+Was originally written by Felipe Morales.
 
 Remove SPACE_IN_FILENAME ? It is only used for completion.
 
@@ -514,7 +514,7 @@ Better: use the "z" prefix.  or ]t) and [t(.
 Modeless selection doesn't work in gvim. (#4783)
 Caused by patch 8.1.1534.
 
-Visual highlight not removed when 'dipslay' is "lastline" and line doesn't
+Visual highlight not removed when 'display' is "lastline" and line doesn't
 fit. (Kevin Lawler, #4457)
 
 Current position in the changelist should be local to the buffer. (#2173)
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt
index fe2fa776c..6192c237e 100644
--- a/runtime/doc/version8.txt
+++ b/runtime/doc/version8.txt
@@ -42445,7 +42445,7 @@ Files:  src/filepath.c, src/testdir/test_fnamemodify.vim
 
 Patch 8.2.0216
 Problem:Several Vim9 instructions are not tested.
-Solution:   Add more tests. Fix :disassamble output. Make catch with pattern
+Solution:   Add more tests. Fix :disassemble output. Make catch with pattern
 work.
 Files:  src/testdir/test_vim9_script.vim, src/vim9execute.c,
 src/vim9compile.c
@@ -42665,7 +42665,7 @@ Solution:   Change to int. (Mike Williams)
 Files:  src/vim9compile.c
 
 Patch 8.2.0253
-Problem:Crash when using :disassamble without argument. (Dhiraj Mishra)
+Problem:Crash when using :disassemble without argument. (Dhiraj Mishra)
 Solution:   Check for missing argument. (Dominique Pellé, closes #5635,
 closes #5637)
 Files:  src/vim9execute.c, src/testdir/test_vim9_disassemble.vim,