Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 47c70b3

Browse files
committed
Minor language and grammar fixes.
1 parent 7014a52 commit 47c70b3

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ too:
4040

4141
Before you consider adding features to syntastic, _please_ spend a few
4242
minutes (re-)reading the latest version of the [manual][1]. Syntastic
43-
is changing rapidly at times, and it's quite possible that some of the
44-
features you want to add exist already.
43+
is changing rapidly at times, and it's quite possible that some features
44+
you want to add exist already.
4545

4646
To submit a patch:
4747

@@ -54,7 +54,7 @@ Small, focused patches are preferred.
5454
Large changes to the code should be discussed with the core team first.
5555
Create an issue and explain your plan and see what we say.
5656

57-
Also make sure to update the manual whenever applicable. Nobody can use
57+
Also, make sure to update the manual whenever applicable. Nobody can use
5858
features that aren't documented.
5959

6060
<a name="generalstyle"></a>

README.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
4.8. [How can I pass additional arguments to a checker?](#faqargs)
3636
4.9. [Syntastic supports several checkers for my filetype - how do I tell which one(s) to use?](#faqcheckers)
3737
4.10. [What is the difference between syntax checkers and style checkers?](#faqstyle)
38-
4.11. [I have enabled multiple checkers for the current filetype. How can I display all of the errors from all of the checkers together?](#faqaggregate)
38+
4.11. [I have enabled multiple checkers for the current filetype. How can I display all errors from all checkers together?](#faqaggregate)
3939
4.12. [How can I jump between the different errors without using the location list at the bottom of the window?](#faqlnext)
4040
4.13. [The error window is closed automatically when I :quit the current buffer but not when I :bdelete it?](#faqbdelete)
4141
5. [Resources](#otherresources)
@@ -159,10 +159,10 @@ following:
159159

160160
## 3\. Recommended settings
161161

162-
Syntastic has a large number of options that can be configured, and the
163-
defaults are not particularly well suitable for new users. It is recommended
164-
that you start by adding the following lines to your `vimrc` file, and return
165-
to them after reading the manual (see `:help syntastic` in Vim):
162+
Syntastic has numerous options that can be configured, and the defaults
163+
are not particularly well suitable for new users. It is recommended
164+
that you start by adding the following lines to your `vimrc` file, and
165+
return to them after reading the manual (see `:help syntastic` in Vim):
166166
```vim
167167
set statusline+=%#warningmsg#
168168
set statusline+=%{SyntasticStatuslineFlag()}
@@ -380,7 +380,7 @@ See `:help syntastic_quiet_messages` for details.
380380
<a name="faqaggregate"></a>
381381

382382
__4.11. Q. I have enabled multiple checkers for the current filetype. How can I
383-
display all of the errors from all of the checkers together?__
383+
display all errors from all checkers together?__
384384

385385
A. Set `g:syntastic_aggregate_errors` to 1 in your `vimrc`:
386386
```vim

doc/syntastic.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ these commands, or perhaps install a plugin such as Tim Pope's 'unimpaired'
110110
------------------------------------------------------------------------------
111111
1.2. Recommended settings *syntastic-recommended*
112112

113-
Syntastic has a large number of options that can be configured, and the
114-
defaults are not particularly well suitable for new users. It is recommended
115-
that you start by adding the following lines to your vimrc, and return to them
116-
later as needed: >
113+
Syntastic has numerous options that can be configured, and the defaults are
114+
not particularly well suitable for new users. It is recommended that you start
115+
by adding the following lines to your vimrc, and return to them later as
116+
needed: >
117117
set statusline+=%#warningmsg#
118118
set statusline+=%{SyntasticStatuslineFlag()}
119119
set statusline+=%*
@@ -459,8 +459,8 @@ opens. >
459459
Default: []
460460
Use this option to specify files that syntastic should never check. It's a
461461
list of |regular-expression| patterns. The full paths of files (see |::p|) are
462-
matched against these patterns, and the matches are case sensitive. Use |\c|
463-
to specify case insensitive patterns. Example: >
462+
matched against these patterns, and the matches are case-sensitive. Use |\c|
463+
to specify case-insensitive patterns. Example: >
464464
let g:syntastic_ignore_files = ['\m^/usr/include/', '\m\c\.h$']
465465
<
466466
*'syntastic_filetype_map'*
@@ -535,10 +535,10 @@ overriding filters, cf. |filter-overrides|).
535535

536536
"level" - takes one of two values, "warnings" or "errors"
537537
"type" - can be either "syntax" or "style"
538-
"regex" - is matched against the messages' text as a case insensitive
538+
"regex" - is matched against the messages' text as a case-insensitive
539539
|regular-expression|
540540
"file" - is matched against the filenames the messages refer to, as a
541-
case sensitive |regular-expression|.
541+
case-sensitive |regular-expression|.
542542

543543
If a key is prefixed by an exclamation mark "!", the corresponding filter is
544544
negated (i.e. the above example silences all messages that are NOT errors).
@@ -799,7 +799,7 @@ Some Vim plugins use composite filetypes, such as "django.python" or
799799
"handlebars.html". Normally, syntastic deals with this situation by splitting
800800
the filetype in its simple components, and calling all checkers that apply.
801801
If this behaviour is not desirable, you can disable it by mapping the
802-
composite filetypes to a simple ones using |'syntastic_filetype_map'|, e.g.: >
802+
composite filetypes to simple ones using |'syntastic_filetype_map'|, e.g.: >
803803
let g:syntastic_filetype_map = { "handlebars.html": "handlebars" }
804804
<
805805
------------------------------------------------------------------------------

plugin/syntastic.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if has('reltime')
1919
lockvar! g:_SYNTASTIC_START
2020
endif
2121

22-
let g:_SYNTASTIC_VERSION = '3.6.0-146'
22+
let g:_SYNTASTIC_VERSION = '3.6.0-147'
2323
lockvar g:_SYNTASTIC_VERSION
2424

2525
" Sanity checks {{{1

0 commit comments

Comments
 (0)