Skip to content

Commit 68b626a

Browse files
d-danilovDmitriy Danilov
and
Dmitriy Danilov
authored
Fix typos in doc and plugin files (phpactor#2050)
Co-authored-by: Dmitriy Danilov <[email protected]>
1 parent 9dafb36 commit 68b626a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

autoload/phpactor/completion.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
""
22
" @section Completion
33
"
4-
" You will need to explcitly configure Phpactor to provide completion
4+
" You will need to explicitly configure Phpactor to provide completion
55
" capabilities.
66
"
77
" @subsection Omni-Completion
88
"
99
" Use VIMs native omni-completion (|compl-omni|)
1010
"
11-
" Enbale omni-completion for PHP files: >
11+
" Enable omni-completion for PHP files: >
1212
"
1313
" autocmd FileType php setlocal omnifunc=phpactor#Complete
1414
"

doc/phpactor.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ this function.
6262
COMPLETION *phpactor-completion*
6363

6464

65-
You will need to explcitly configure Phpactor to provide completion
65+
You will need to explicitly configure Phpactor to provide completion
6666
capabilities.
6767

6868
OMNI-COMPLETION
6969

7070
Use VIMs native omni-completion (|compl-omni|)
7171

72-
Enbale omni-completion for PHP files:
72+
Enable omni-completion for PHP files:
7373
>
7474
7575
autocmd FileType php setlocal omnifunc=phpactor#Complete
@@ -105,7 +105,7 @@ COMMANDS *phpactor-commands*
105105
Extract a constant from a literal
106106

107107
:[N]PhpactorImportClass *:PhpactorImportClass*
108-
Import the name under the cusor. If multiple options are available, you are
108+
Import the name under the cursor. If multiple options are available, you are
109109
able to choose one.
110110

111111
:[N]PhpactorImportMissingClasses *:PhpactorImportMissingClasses*
@@ -135,15 +135,15 @@ COMMANDS *phpactor-commands*
135135

136136
:[N]PhpactorFindReferences *:PhpactorFindReferences*
137137
Attempt to find all references to the class name or method under the cursor.
138-
The results will be loaded into the quik-fix list
138+
The results will be loaded into the quick-fix list
139139

140140
:[N]PhpactorNavigate *:PhpactorNavigate*
141141
Navigate - jump to the parent class, interface, or any of the relationships
142142
defined in `navigation.destinations`
143143
https://phpactor.github.io/phpactor/configuration.html#reference
144144

145145
:[N]PhpactorChangeVisibility *:PhpactorChangeVisibility*
146-
Rotate the visiblity of the method under the cursor
146+
Rotate the visibility of the method under the cursor
147147

148148
:[N]PhpactorGenerateAccessors *:PhpactorGenerateAccessors*
149149
Generate accessors for the current class
@@ -216,7 +216,7 @@ COMMANDS *phpactor-commands*
216216

217217
:PhpactorGotoImplementations [target] *:PhpactorGotoImplementations*
218218

219-
Same as |:PhpactorGotoDefinition| but goto the implmentation of the symbol
219+
Same as |:PhpactorGotoDefinition| but goto the implementation of the symbol
220220
under the cursor.
221221

222222
If there is more than one result the quickfix strategy will be used and

ftplugin/php/commands.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ command! -buffer -range=% PhpactorExtractExpression call phpactor#ExtractExpress
1212
command! -buffer -nargs=0 PhpactorExtractConstant call phpactor#ExtractConstant()
1313

1414
""
15-
" Import the name under the cusor. If multiple options are available, you
15+
" Import the name under the cursor. If multiple options are available, you
1616
" are able to choose one.
1717
command! -buffer -nargs=0 PhpactorImportClass call phpactor#ImportClass()
1818

plugin/phpactor.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ command! -nargs=? -complete=customlist,s:CompleteWindowTarget PhpactorGotoType c
134134
""
135135
" @usage [target]
136136
"
137-
" Same as @command(PhpactorGotoDefinition) but goto the implmentation of the
137+
" Same as @command(PhpactorGotoDefinition) but goto the implementation of the
138138
" symbol under the cursor.
139139
"
140140
" If there is more than one result the quickfix strategy will be used and [target]

0 commit comments

Comments
 (0)