Skip to content

Commit a5716c9

Browse files
committed
Fix typos
1 parent deda23f commit a5716c9

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

runtime/doc/pi_netrw.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4311,7 +4311,7 @@ netrw:
43114311
/cygdrive prefix be a user-alterable
43124312
parameter.
43134313
Jan 02, 2014 * Fixed a problem with netrw-based ballon
4314-
evaluation (ie. netrw#NetrwBaloonHelp()
4314+
evaluation (ie. netrw#NetrwBalloonHelp()
43154315
not having been loaded error messages)
43164316
Jan 03, 2014 * Fixed a problem with tree listings
43174317
* New command installed: |:Ntree|

runtime/ftplugin/javascriptreact.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
" Maintainer: Doug Kearns <[email protected]>
44
" Last Change: 2020 Aug 19
55

6-
" Placeholder for backwards compatilibity: .jsx used to stand for JavaScript.
6+
" Placeholder for backwards compatibility: .jsx used to stand for JavaScript.
77
runtime! ftplugin/javascript.vim

runtime/ftplugin/readline.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if exists("loaded_matchit") && !exists("b:match_words")
2525
endif
2626

2727
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
28-
let b:browsefilter = "Readline Intialization Files (inputrc, .inputrc)\tinputrc;*.inputrc\n"
28+
let b:browsefilter = "Readline Initialization Files (inputrc, .inputrc)\tinputrc;*.inputrc\n"
2929
if has("win32")
3030
let b:browsefilter ..= "All Files (*.*)\t*\n"
3131
else

runtime/indent/cdl.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fun! CdlGetIndent(lnum)
7171
" One 'closing' element at the beginning of the line has already reduced the
7272
" indent, but 'else', 'elseif' & 'then' increment it for the next line.
7373
" '=' at the beginning already has the right indent (increased for
74-
" asignments).
74+
" assignments).
7575
let f = -1
7676
let inicio = matchend(line, '^\c\s*\(else\a*\|then\|endif\|/[*/]\|[);={]\)')
7777
if inicio > 0

runtime/indent/javascriptreact.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
" Placeholder for backwards compatilibity: .jsx used to stand for JavaScript.
1+
" Placeholder for backwards compatibility: .jsx used to stand for JavaScript.
22
runtime! indent/javascript.vim

runtime/indent/typescriptreact.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
" Placeholder for backwards compatilibity: .tsx used to stand for TypeScript.
1+
" Placeholder for backwards compatibility: .tsx used to stand for TypeScript.
22
runtime! indent/typescript.vim

runtime/syntax/ia64.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ syn keyword ia64opcode pshradd2 psub4 rfi rsm rum shl shladd shladdp4
4848
syn keyword ia64opcode shrp ssm sub sum sync.i tak thash
4949
syn keyword ia64opcode tpa ttag xor
5050

51-
"put to override these being recognized as floats. They are orignally from masm.vim
51+
"put to override these being recognized as floats. They are originally from masm.vim
5252
"put here to avoid confusion with float
5353
syn match ia64Directive "\.186"
5454
syn match ia64Directive "\.286"

runtime/syntax/javascriptreact.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
" Placeholder for backwards compatilibity: .jsx used to be associated with the
1+
" Placeholder for backwards compatibility: .jsx used to be associated with the
22
" filetpye JavaScript.
33
runtime! syntax/javascript.vim

src/os_unix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4431,7 +4431,7 @@ mch_report_winsize(int fd, int rows, int cols)
44314431
ws.ws_col = cols;
44324432
ws.ws_row = rows;
44334433

4434-
// calcurate and set tty pixel size
4434+
// calculate and set tty pixel size
44354435
struct cellsize cs;
44364436
mch_calc_cell_size(&cs);
44374437

0 commit comments

Comments
 (0)