Skip to content

Commit 4d88f6e

Browse files
EdwardBettsxuhdev
authored andcommitted
Correct spelling mistakes
1 parent 2c3e532 commit 4d88f6e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

plugin/editorconfig-core-py/docs/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Bundling as a Submodule in Git
3636
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3737

3838
Git submodules allow one repository to be included inside another. A submodule
39-
stores a remote repositry and commit to use for fetching the embedded
39+
stores a remote repository and commit to use for fetching the embedded
4040
repository. Submodules take up very little space in the repository since they
4141
do not actually include the code of the embedded repository directly.
4242

plugin/editorconfig-core-py/editorconfig/ini.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def _read(self, fp, fpname):
145145
optname, vi, optval = mo.group('option', 'vi', 'value')
146146
if ';' in optval or '#' in optval:
147147
# ';' and '#' are comment delimiters only if
148-
# preceeded by a spacing character
148+
# preceded by a spacing character
149149
m = re.search('(.*?) [;#]', optval)
150150
if m:
151151
optval = m.group(1)

plugin/editorconfig.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ function! s:InitializePythonBuiltin(editorconfig_core_py_dir) " {{{2
279279
endfunction
280280

281281
function! s:Initialize() " {{{1
282-
" Do some initalization for the case that the user has specified core mode {{{2
282+
" Do some initialization for the case that the user has specified core mode {{{2
283283
if !empty(s:editorconfig_core_mode)
284284

285285
if s:editorconfig_core_mode == 'external_command'

0 commit comments

Comments
 (0)