]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime: Fix more typos (#13354)
authorViktor Szépe <viktor@szepe.net>
Mon, 16 Oct 2023 07:53:37 +0000 (09:53 +0200)
committerGitHub <noreply@github.com>
Mon, 16 Oct 2023 07:53:37 +0000 (09:53 +0200)
* Fix more typos

* Fix typos in ignored runtime/ directory

Signed-off-by: Christian Brabandt <cb@256bit.org>
31 files changed:
runtime/autoload/netrw.vim
runtime/autoload/phpcomplete.vim
runtime/autoload/rustfmt.vim
runtime/autoload/typeset.vim
runtime/colors/README.txt
runtime/indent/cdl.vim
runtime/indent/erlang.vim
runtime/indent/julia.vim
runtime/indent/krl.vim
runtime/indent/rapid.vim
runtime/indent/systemverilog.vim
runtime/keymap/greek_utf-8.vim
runtime/macros/maze/maze_mac
runtime/macros/urm/README.txt
runtime/makemenu.vim
runtime/pack/dist/opt/editorconfig/autoload/editorconfig_core/ini.vim
runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
runtime/synmenu.vim
runtime/syntax/abap.vim
runtime/syntax/asm68k.vim
runtime/syntax/chill.vim
runtime/syntax/debcontrol.vim
runtime/syntax/nix.vim
runtime/syntax/ora.vim
runtime/syntax/po.vim
runtime/syntax/ppd.vim
runtime/syntax/spup.vim
runtime/syntax/tsscl.vim
runtime/syntax/zsh.vim
src/errors.h
src/option.c

index 2358e2627be086c8724ce86bc225f8da6a55cdf5..33a2fdd897b248ae4a53a797f445ae018b23ecc6 100644 (file)
@@ -1961,7 +1961,7 @@ endfun
 "                        Doing this means that netrw will not come up as having changed a
 "                        setting last when it really didn't actually change it.
 "
-"                        Used by s:NetrwOptionsRestore() to restore each netrw-senstive setting
+"                        Used by s:NetrwOptionsRestore() to restore each netrw-sensitive setting
 "                        keepvars are set up by s:NetrwOptionsSave
 fun! s:NetrwRestoreSetting(keepvar,setting)
 """  call Dfunc("s:NetrwRestoreSetting(a:keepvar<".a:keepvar."> a:setting<".a:setting.">)")
@@ -5562,7 +5562,7 @@ fun! netrw#BrowseX(fname,remote)
   " cleanup: remove temporary file,
   "          delete current buffer if success with handler,
   "          return to prior buffer (directory listing)
-  "          Feb 12, 2008: had to de-activiate removal of
+  "          Feb 12, 2008: had to de-activate removal of
   "          temporary file because it wasn't getting seen.
 "  if remote == 1 && fname != a:fname
 ""   call Decho("deleting temporary file<".fname.">",'~'.expand("<slnum>"))
index f9448cbd9bc5f889919924cd9a0d1ec8687a9433..5b4263ae458f71753af79e6d5fb67d937020607b 100644 (file)
@@ -2907,7 +2907,7 @@ endfor
 " builtin class information
 let g:php_builtin_object_functions = {}
 
-" When completing for 'everyting imaginable' (no class context, not a
+" When completing for 'everything imaginable' (no class context, not a
 " variable) we need a list of built-in classes in a format of {'classname':''}
 " for performance reasons we precompile this too
 let g:php_builtin_classnames = {}
index 652e6af33ab7f3d99565cf0e5df4b289c912bd63..8fd3858178a9ad66bde2ea30793cdba7618fb236 100644 (file)
@@ -25,7 +25,7 @@ function! rustfmt#DetectVersion()
     silent let s:rustfmt_help = system(g:rustfmt_command . " --help")
     let s:rustfmt_unstable_features = s:rustfmt_help =~# "--unstable-features"
 
-    " Build a comparable rustfmt version varible out of its `--version` output:
+    " Build a comparable rustfmt version variable out of its `--version` output:
     silent let l:rustfmt_version_full = system(g:rustfmt_command . " --version")
     let l:rustfmt_version_list = matchlist(l:rustfmt_version_full,
         \    '\vrustfmt ([0-9]+[.][0-9]+[.][0-9]+)')
index 35cf17ba87fdece6cd6214a6597a952a65e007af..a1a809221c2b355c990e02891da1281a7ac6bdef 100644 (file)
@@ -97,7 +97,7 @@ enddef
 
 # Public interface {{{
 # When a TeX document is split into several source files, each source file
-# may contain a "magic line" specifiying the "root" file, e.g.:
+# may contain a "magic line" specifying the "root" file, e.g.:
 #
 #   % !TEX root = main.tex
 #
index e4af1b9a9c4ded0be6eaaa976310cf2eab1967fc..f48c11e6fa89f856390655cfcc6a7df9e37a0918 100644 (file)
@@ -111,11 +111,11 @@ please check the following items:
 - Do not use hard coded escape sequences, these will not work in other
   terminals.  Always use #RRGGBB for the GUI.
 
-- When targetting 8-16 colors terminals, don't count on "darkblue" to be blue
+- When targeting 8-16 colors terminals, don't count on "darkblue" to be blue
   and dark, or on "2" to be even vaguely reddish.  Names are more portable
   than numbers, though.
 
-- When targetting 256 colors terminals, prefer colors 16-255 to colors 0-15
+- When targeting 256 colors terminals, prefer colors 16-255 to colors 0-15
   for the same reason.
 
 - Typographic attributes (bold, italic, underline, reverse, etc.) are not
index 2c0fc7988eb33bdf3ffa08cf44b1485a99fdee67..da675698cf718e07a4f89746f4e345fc6c36a265 100644 (file)
@@ -21,7 +21,7 @@ endif
 
 " find out if an "...=..." expression is an assignment (or a conditional)
 " it scans 'line' first, and then the previous lines
-fun! CdlAsignment(lnum, line)
+fun! CdlAssignment(lnum, line)
   let f = -1
   let lnum = a:lnum
   let line = a:line
@@ -90,7 +90,7 @@ fun! CdlGetIndent(lnum)
     end
   end
 
-  " remove members [a] of [b]:[c]... (inicio remainds valid)
+  " remove members [a] of [b]:[c]... (inicio remains valid)
   let line = substitute(line, '\c\(\[[^]]*]\(\s*of\s*\|:\)*\)\+', ' ', 'g')
   while 1
     " search for the next interesting element
@@ -111,7 +111,7 @@ fun! CdlGetIndent(lnum)
     else " c == '='
       " if it is an assignment increase indent
       if f == -1 " we don't know yet, find out
-       let f = CdlAsignment(lnum, strpart(line, 0, inicio))
+       let f = CdlAssignment(lnum, strpart(line, 0, inicio))
       end
       if f == 1 " formula increase it
        let ind = ind + shiftwidth()
@@ -125,7 +125,7 @@ fun! CdlGetIndent(lnum)
     let ind = ind - shiftwidth()
   elseif match(thisline, '^\s*=') >= 0
     if f == -1 " we don't know yet if is an assignment, find out
-      let f = CdlAsignment(lnum, "")
+      let f = CdlAssignment(lnum, "")
     end
     if f == 1 " formula increase it
       let ind = ind + shiftwidth()
index 7aa38587a69e0478e81d862963cb9ce981d4e90c..5682c31ef3aa79167700213dbc4d23127e19ce66 100644 (file)
@@ -1324,7 +1324,7 @@ function! s:ErlangCalcIndent2(lnum, stack)
           "   maybe A else
           "               LTI
           "
-          " Note about Emacs compabitility {{{
+          " Note about Emacs compatibility {{{
           "
           " It would be fine to indent the examples above the following way:
           "
index 36f39f665280a4c490364ab30472bf0235cdd359..efc98a2851b8c7d95bc8272af842c9997d3ff068 100644 (file)
@@ -310,7 +310,7 @@ function IsFunctionArgPar(lnum, c)
 endfunction
 
 function JumpToMatch(lnum, last_closed_bracket)
-  " we use the % command to skip back (tries to ues matchit if possible,
+  " we use the % command to skip back (tries to use matchit if possible,
   " otherwise resorts to vim's default, which is buggy but better than
   " nothing)
   call cursor(a:lnum, a:last_closed_bracket)
index cc3cbd1abb1966c0479b530265e7e8b810384a52..89f45356bafc3b991d47b93a57de2cb7f4429251 100644 (file)
@@ -41,7 +41,7 @@ function GetKrlIndent() abort
   let currentLine = getline(v:lnum)
   if  currentLine =~? '\v^;(\s*(end)?fold>)@!' && !get(g:, 'krlCommentIndent', 0)
     " If current line has a ; in column 1 and is no fold, keep zero indent.
-    " This may be usefull if code is commented out at the first column.
+    " This may be useful if code is commented out at the first column.
     return 0
   endif
 
@@ -117,7 +117,7 @@ function s:KrlPreNoneBlank(lnum) abort
   let nPreNoneBlank = prevnonblank(a:lnum)
 
   while nPreNoneBlank > 0 && getline(nPreNoneBlank) =~? '\v^\s*(\&\w\+|;|continue>)'
-    " Previouse none blank line irrelevant. Look further aback.
+    " Previous none blank line irrelevant. Look further aback.
     let nPreNoneBlank = prevnonblank(nPreNoneBlank - 1)
   endwhile
 
index 2c99bb249118f602dbe039e7d280dbcdbac30841..b1fa00b8cc39069767284e6eaab3c1e09a32fd2e 100644 (file)
@@ -74,7 +74,7 @@ function s:GetRapidIndentIntern() abort
 
   if  l:currentLine =~ '^!' && !get(g:,'rapidCommentIndent',0)
     " If current line is ! line comment, do not change indent
-    " This may be usefull if code is commented out at the first column.
+    " This may be useful if code is commented out at the first column.
     return 0
   endif
 
index a5f4d5b90de20a81406e198fb0a40c6068c678c2..42a05a03aac5e9e13a46b98b4ead09a465b1919f 100644 (file)
@@ -78,10 +78,10 @@ function SystemVerilogIndent()
   " Multiple-line comment count
   if curr_line =~ '^\s*/\*' && curr_line !~ '/\*.\{-}\*/'
     let s:multiple_comment += 1
-    if vverb | echom vverb_str "Start of multiple-line commnt" | endif
+    if vverb | echom vverb_str "Start of multiple-line comment" | endif
   elseif curr_line =~ '\*/\s*$' && curr_line !~ '/\*.\{-}\*/'
     let s:multiple_comment -= 1
-    if vverb | echom vverb_str "End of multiple-line commnt" | endif
+    if vverb | echom vverb_str "End of multiple-line comment" | endif
     return ind
   endif
   " Maintain indentation during commenting.
index 17564542d9d09423bb7f8b250db1ea3e35f0d65b..c6cc32563e6414fe581f485073f99a0f767c8625 100644 (file)
@@ -34,7 +34,7 @@
 " without having to combine them with letters (usufull for grammarians
 " in particular) (especially for dasia and psiln we use ' for psili
 " (that is apostrophe) and ;' for dasia. This is done in order to
-" preserve the posibility to write a plain < or >.
+" preserve the possibility to write a plain < or >.
 
 " Ypogegrammeni is | following the character (the originally proposed
 " i after the character is problematic: can't write easily ai or vi) :
index 621aeec2b7d30c7b5991f297e47e185c8a242800..b1e3487a9502515ff6d7a1cf94d7ef2881cdd0a3 100644 (file)
@@ -190,7 +190,7 @@ map I   G$?.\r^GYKeDP0S2Gl
 "            into the Macro register
 "      GVJ - on bottom line, create a command to restore the current character
 "       0H - and save the command into the second Macro register
-"     `a@r - go back to the current position and exectute the macro to restore
+"     `a@r - go back to the current position and execute the macro to restore
 "            the current character
 "       @m - execute the action associated with this state
 "        U - and repeat
index a1ecc658ca472cf6af08f4b1e6235b58e121c581..39958136890dee3a85d7ccc9efa3f3363ea52d83 100644 (file)
@@ -10,7 +10,7 @@ in vim:                :so urm.vim<RETURN>
 in vim:                 *      (to load the registers and boot the URM-machine :-)
 in vim:                 g      (for 'go') and watch the fun. Per default, 3 and 4
                        are multiplied. Watch the Program counter, it is
-                       visible as a komma moving around.
+                       visible as a comma moving around.
 
 This is a "standard URM" (Universal register machine)  interpreter. The URM
 concept is used in theoretical computer science to aid in theorem proving.
index 4de9d48233730f97d89daabffdf03c6f7a1fe95d..0479f7ba7f70ddb3808fdd991ab903ae534044b1 100644 (file)
@@ -89,7 +89,7 @@ SynMenu AB.Assembly.PIC:pic
 SynMenu AB.Assembly.Turbo:tasm
 SynMenu AB.Assembly.VAX\ Macro\ Assembly:vmasm
 SynMenu AB.Assembly.Z-80:z8a
-SynMenu AB.Assembly.xa\ 6502\ cross\ assember:a65
+SynMenu AB.Assembly.xa\ 6502\ cross\ assembler:a65
 SynMenu AB.ASN\.1:asn
 SynMenu AB.Asterisk\ config:asterisk
 SynMenu AB.Asterisk\ voicemail\ config:asteriskvm
@@ -327,7 +327,7 @@ SynMenu HIJK.Kivy:kivy
 SynMenu HIJK.KixTart:kix
 
 SynMenu L.Lace:lace
-SynMenu L.LamdaProlog:lprolog
+SynMenu L.LambdaProlog:lprolog
 SynMenu L.Latte:latte
 SynMenu L.Ld\ script:ld
 SynMenu L.LDAP.LDIF:ldif
index 55d2dee4ea6441b00110568df25d908f104edcd2..73716969e7020ba38403b803270553c23f5dc480 100644 (file)
@@ -1,6 +1,6 @@
 " autoload/editorconfig_core/ini.vim: Config-file parser for
 " editorconfig-core-vimscript and editorconfig-vim.
-" Modifed from the Python core's ini.py.
+" Modified from the Python core's ini.py.
 
 " Copyright (c) 2012-2019 EditorConfig Team {{{2
 " All rights reserved.
index 7d9b80f51041f7a6768fa8616f5e789443738a39..e6126ee6f38ce6986aec5391b2e39a0033947e44 100644 (file)
@@ -1219,7 +1219,7 @@ func s:Run(args)
   call s:SendResumingCommand('-exec-run')
 endfunc
 
-" :Frame - go to a specfic frame in the stack
+" :Frame - go to a specific frame in the stack
 func s:Frame(arg)
   " Note: we explicit do not use mi's command
   " call s:SendCommand('-stack-select-frame "' . a:arg .'"')
index 5251045a9653a57c7e7f58e789fea07e167c02d5..12cdcbdddf80b9cbfe273ac423d211df1ff5b8b7 100644 (file)
@@ -73,7 +73,7 @@ an 50.10.440 &Syntax.AB.Assembly.PIC :cal SetSyn("pic")<CR>
 an 50.10.450 &Syntax.AB.Assembly.Turbo :cal SetSyn("tasm")<CR>
 an 50.10.460 &Syntax.AB.Assembly.VAX\ Macro\ Assembly :cal SetSyn("vmasm")<CR>
 an 50.10.470 &Syntax.AB.Assembly.Z-80 :cal SetSyn("z8a")<CR>
-an 50.10.480 &Syntax.AB.Assembly.xa\ 6502\ cross\ assember :cal SetSyn("a65")<CR>
+an 50.10.480 &Syntax.AB.Assembly.xa\ 6502\ cross\ assembler :cal SetSyn("a65")<CR>
 an 50.10.490 &Syntax.AB.ASN\.1 :cal SetSyn("asn")<CR>
 an 50.10.500 &Syntax.AB.Asterisk\ config :cal SetSyn("asterisk")<CR>
 an 50.10.510 &Syntax.AB.Asterisk\ voicemail\ config :cal SetSyn("asteriskvm")<CR>
@@ -303,7 +303,7 @@ an 50.50.710 &Syntax.HIJK.Kimwitu++ :cal SetSyn("kwt")<CR>
 an 50.50.720 &Syntax.HIJK.Kivy :cal SetSyn("kivy")<CR>
 an 50.50.730 &Syntax.HIJK.KixTart :cal SetSyn("kix")<CR>
 an 50.60.100 &Syntax.L.Lace :cal SetSyn("lace")<CR>
-an 50.60.110 &Syntax.L.LamdaProlog :cal SetSyn("lprolog")<CR>
+an 50.60.110 &Syntax.L.LambdaProlog :cal SetSyn("lprolog")<CR>
 an 50.60.120 &Syntax.L.Latte :cal SetSyn("latte")<CR>
 an 50.60.130 &Syntax.L.Ld\ script :cal SetSyn("ld")<CR>
 an 50.60.140 &Syntax.L.LDAP.LDIF :cal SetSyn("ldif")<CR>
index e48dfc3603d31895150a893b6453263bbddcb3e0..627e51504a3dcf703e26e311b16c79a33ba2ac04 100644 (file)
@@ -122,7 +122,7 @@ syn keyword abapStatement TABLES TIMES TRANSFER TRANSLATE TRY TYPE TYPES
 syn keyword abapStatement UNASSIGN ULINE UNPACK UPDATE
 syn keyword abapStatement WHEN WHILE WINDOW WRITE
 
-" More statemets
+" More statements
 syn keyword abapStatement LINES
 syn keyword abapStatement INTO GROUP BY HAVING ORDER BY SINGLE
 syn keyword abapStatement APPENDING CORRESPONDING FIELDS OF TABLE
index e13dfe638962e28d5f37549c66047f3f56679d6b..104887d0262dd60efd18faf297e44c8639e77671 100644 (file)
@@ -4,7 +4,7 @@
 " Last change: 2001 May 01
 "
 " This is incomplete.  In particular, support for 68020 and
-" up and 68851/68881 co-processors is partial or non-existant.
+" up and 68851/68881 co-processors is partial or non-existent.
 " Feel free to contribute...
 "
 
@@ -220,7 +220,7 @@ syn match asm68kOperator    "<>"            " inequality
 syn match asm68kOperator       "="             " must be before other ops containing '='
 syn match asm68kOperator       ">="
 syn match asm68kOperator       "<="
-syn match asm68kOperator       "=="            " operand existance - used in macro definitions
+syn match asm68kOperator       "=="            " operand existence - used in macro definitions
 
 " Condition code style operators
 syn match asm68kOperator       "<[CV][CS]>"
index f3c66c2b4d10f46246a79298a85e1917fa283893..b95df68bc8642bbbfe157e4eea174069d14c9cba 100644 (file)
@@ -24,7 +24,7 @@ syn keyword   chillLogical    NOT not
 syn keyword    chillRepeat     while WHILE for FOR do DO od OD TO to
 syn keyword    chillProcess    START start STACKSIZE stacksize PRIORITY priority THIS this STOP stop
 syn keyword    chillBlock              PROC proc PROCESS process
-syn keyword    chillSignal     RECEIVE receive SEND send NONPERSISTENT nonpersistent PERSISTENT peristent SET set EVER ever
+syn keyword    chillSignal     RECEIVE receive SEND send NONPERSISTENT nonpersistent PERSISTENT persistent SET set EVER ever
 
 syn keyword    chillTodo               contained TODO FIXME XXX
 
index c79b702f9223aebed090cc306a36f86ea8ee968d..af78ebc3aed1812e0db7ad0a2ef66bb7fbebe1f2 100644 (file)
@@ -22,7 +22,7 @@ syn iskeyword @,48-57,-
 " Everything that is not explicitly matched by the rules below
 syn match debcontrolElse "^.*$"
 
-" Common seperators
+" Common separators
 syn match debControlComma ",[ \t]*"
 syn match debControlSpace "[ \t]"
 
index 671b269c04624dcc598b5faa3644107009822a8b..ef52cddf46ddb5ddc375e6f09ce7854ecb1c652f 100644 (file)
@@ -99,7 +99,7 @@ syn match nixArgOperator '[a-zA-Z_][a-zA-Z0-9_'-]*\%(\s\|#.\{-\}\n\|\n\|/\*\_.\{
 "
 " "\%(\s\|#.\{-\}\n\|\n\|/\*\_.\{-\}\*/\)*"
 "
-" It is also used throught the whole file and is marked with 'v's as well.
+" It is also used throughout the whole file and is marked with 'v's as well.
 "
 " Fortunately the matching rules for function arguments are much simpler than
 " for real attribute sets, because we can stop when we hit the first ellipsis or
index 99034793f257a89634e2d3e43f74498b18a7bbeb..ab091a2eee448cdbaba760d08ec4410f689190f7 100644 (file)
@@ -449,7 +449,7 @@ hi def link oraString         String                "strings
 
 hi def link oraSpecial   Special               "special characters
 hi def link oraError     Error                 "errors
-hi def link oraParenError        oraError              "errors caused by mismatching parantheses
+hi def link oraParenError        oraError              "errors caused by mismatching parentheses
 
 hi def link oraComment   Comment               "comments
 
index 15d09b18bd53479686bbcfcae37988db73b5bdc7..08d6baec27d4bc865929da2222bc6935f2e7e023 100644 (file)
@@ -42,7 +42,7 @@ syn match     poHeaderItem "\(Project-Id-Version\|Report-Msgid-Bugs-To\|POT-Crea
 syn match     poHeaderUndefined "\(PACKAGE VERSION\|YEAR-MO-DA HO:MI+ZONE\|FULL NAME <EMAIL@ADDRESS>\|LANGUAGE <LL@li.org>\|CHARSET\|ENCODING\|INTEGER\|EXPRESSION\)" contained
 syn match     poCopyrightUnset "SOME DESCRIPTIVE TITLE\|FIRST AUTHOR <EMAIL@ADDRESS>, YEAR\|Copyright (C) YEAR Free Software Foundation, Inc\|YEAR THE PACKAGE\'S COPYRIGHT HOLDER\|PACKAGE" contained
 
-" Translation comment block including: translator comment, automatic coments, flags and locations
+" Translation comment block including: translator comment, automatic comments, flags and locations
 syn match     poComment "^#.*$"
 syn keyword   poFlagFuzzy fuzzy contained
 syn match     poCommentTranslator "^# .*$" contains=poCopyrightUnset
index da67e1f39ff4a0fbb3b6ec1e9c4c0ca67ed31a39..6bd57f34e5f3763f3212240545426df761f0b14b 100644 (file)
@@ -15,7 +15,7 @@ syn match     ppdDefine       "\*[a-zA-Z0-9\-_]\+:"
 syn match      ppdUI           "\*[a-zA-Z]*\(Open\|Close\)UI"
 syn match      ppdUIGroup      "\*[a-zA-Z]*\(Open\|Close\)Group"
 syn match      ppdGUIText      "/.*:"
-syn match      ppdContraints   "^*UIConstraints:"
+syn match      ppdConstraints  "^*UIConstraints:"
 
 " Define the default highlighting.
 " Only when an item doesn't have highlighting yet
@@ -27,7 +27,7 @@ hi def link ppdUI                     Function
 hi def link ppdUIGroup         Function
 hi def link ppdDef                     String
 hi def link ppdGUIText         Type
-hi def link ppdContraints              Special
+hi def link ppdConstraints             Special
 
 
 let b:current_syntax = "ppd"
index 9284abf63f72787e4d482e84ee3ded8d64221bbe..222caa779e1f8207a17a09b08621192fbd7f0364 100644 (file)
@@ -29,7 +29,7 @@ set cpo&vim
 "let strict_subsections = 1
 
 " highlight types usually found in DECLARE section
-if !exists("hightlight_types")
+if !exists("highlight_types")
     let highlight_types = 1
 endif
 
index fd2a5e2ba956eca7341dc95feeeded36bcf0659c..df804b2f8893d0c40b66ebc35a2afd6558bbac68 100644 (file)
@@ -22,7 +22,7 @@ syn case ignore
 
 "
 "
-" Begin syntax definitions for tss geomtery file.
+" Begin syntax definitions for tss geometry file.
 "
 
 " Load TSS geometry syntax file
index 69671c59ca8ac1d8916e9f018a54d6aeb678546b..084f8cdb41d47e6e2cc62045f52d3099b16478a5 100644 (file)
@@ -88,7 +88,7 @@ syn match   zshOperator         '||\|&&\|;\|&!\='
 syn match   zshRedir            '\d\=\(<<<\|<&\s*[0-9p-]\=\|<>\?\)'
                                 " >, >>, and variants.
 syn match   zshRedir            '\d\=\(>&\s*[0-9p-]\=\|&>>\?\|>>\?&\?\)[|!]\='
-                                " | and |&, but only if it's not preceeded or
+                                " | and |&, but only if it's not preceded or
                                 " followed by a | to avoid matching ||.
 syn match   zshRedir            '|\@1<!|&\=|\@!'
 
index 50cf6698da23bf5943c6b33b438bc01433769ab7..7b1181ae94feb223b9819cc858e5b1c9b1ea1730 100644 (file)
@@ -3559,4 +3559,4 @@ EXTERN char e_aptypes_is_null_nr_str[]
 EXTERN char e_xattr_e2big[]
        INIT(= N_("E1508: Size of the extended attribute value is larger than the maximum size allowed"));
 EXTERN char e_xattr_other[]
-       INIT(= N_("E1509: Error occured when reading or writing extended attribute"));
+       INIT(= N_("E1509: Error occurred when reading or writing extended attribute"));
index b1e70c6fd2251ca5d904ff7c4481221f9d65ffb7..53e956c8b125963bfaf349706abf17d00dff7784 100644 (file)
@@ -7992,7 +7992,7 @@ ExpandSettingSubtract(
        {
            // Don't suggest anything if cmdline is non-empty. Vim's set-=
            // behavior requires consecutive strings and it's usually
-           // unintuitive to users if ther try to subtract multiple flags at
+           // unintuitive to users if they try to subtract multiple flags at
            // once.
            return FAIL;
        }