Skip to content

Commit 13da387

Browse files
committed
Fix typos
1 parent c7216db commit 13da387

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3612,7 +3612,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
36123612
### Fixed
36133613
- Fixed bug [#584][sq-584] : Squiz.Arrays.ArrayDeclaration sniff gives incorrect NoComma error for multiline string values
36143614
- Fixed bug [#589][sq-589] : PEAR.Functions.FunctionCallSignature sniff not checking all function calls
3615-
- Fixed bug [#592][sq-592] : USE statement tokenising can sometimes result in mismatched scopes
3615+
- Fixed bug [#592][sq-592] : USE statement tokenizing can sometimes result in mismatched scopes
36163616
- Fixed bug [#594][sq-594] : Tokenizer issue on closure that returns by reference
36173617
- Fixed bug [#595][sq-595] : Colons in CSS selectors within media queries throw false positives
36183618
- Thanks to [Klaus Purer][@klausi] for the patch
@@ -5444,7 +5444,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
54445444
- Fixed bug [#18633][pear-18633] : CSS Tokenizer doesn't replace T_LIST tokens inside some styles
54455445
- Fixed bug [#18657][pear-18657] : anonymous functions wrongly indented
54465446
- Fixed bug [#18670][pear-18670] : UpperCaseConstantNameSniff fails on dynamic retrieval of class constant
5447-
- Fixed bug [#18709][pear-18709] : Code sniffer sniffs file if even if it's in --ignore
5447+
- Fixed bug [#18709][pear-18709] : Code sniffer sniffs file even if it's in --ignore
54485448
- Thanks to [Artem Lopata][@biozshock] for the patch
54495449
- Fixed bug [#18762][pear-18762] : Incorrect handling of define and constant in UpperCaseConstantNameSniff
54505450
- Thanks to [Thomas Baker][pear-bakert] for the patch
@@ -5758,7 +5758,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
57585758
- Squiz VariableCommentSniff now ensures the open comment tag is the only content on the first line
57595759
- Squiz NonExecutableCodeSniff now warns about empty return statements that are not required
57605760
- Removed ForbiddenStylesSniff from Squiz standard
5761-
- It is now in in the MySource standard as BrowserSpecificStylesSniff
5761+
- It is now in the MySource standard as BrowserSpecificStylesSniff
57625762
- New BrowserSpecificStylesSniff ignores files with browser-specific suffixes
57635763
- MySource IncludeSystemSniff no longer throws errors when extending the Exception class
57645764
- MySource IncludeSystemSniff no longer throws errors for the abstract widget class
@@ -5807,10 +5807,10 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
58075807
- You can also use the -s command line argument to see the different types of errors authors are committing
58085808
- You can use the -v command line argument to see all authors, even if they have no errors or warnings
58095809
- Added a new command line argument --report-width to allow you to set the column width of screen reports
5810-
- Reports wont accept values less than 70 or else they get too small
5810+
- Reports won't accept values less than 70 or else they get too small
58115811
- Can also be set via a config var: phpcs --config-set report_width 100
58125812
- You can now get PHP_CodeSniffer to ignore a whole file by adding @codingStandardsIgnoreFile in the content
5813-
- If you put it in the first two lines the file wont even be tokenized, so it will be much quicker
5813+
- If you put it in the first two lines the file won't even be tokenized, so it will be much quicker
58145814
- Reports now print their file lists in alphabetical order
58155815
- PEAR FunctionDeclarationSniff now reports error for incorrect closing bracket placement in multi-line definitions
58165816
- Added Generic CallTimePassByReferenceSniff to prohibit the passing of variables into functions by reference
@@ -6320,7 +6320,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
63206320
- A value of zero (the default) tells PHP_CodeSniffer not to replace tabs with spaces
63216321
- You can now change the default report format from "full" to something else
63226322
- Run: phpcs --config-set report_format [format]
6323-
- Improved performance by optimising the way the scope map is created during tokenising
6323+
- Improved performance by optimising the way the scope map is created during tokenizing
63246324
- Added new Squiz DisallowInlineIfSniff to disallow the usage of inline IF statements
63256325
- Fixed incorrect errors being thrown for nested switches in Squiz SwitchDeclarationSniff
63266326
- PEAR FunctionCommentSniff no longer complains about missing comments for @throws tags
@@ -6355,7 +6355,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
63556355
- Run: phpcs --config-set show_warnings 0
63566356
- If warnings are hidden by default, use the new -w command line argument to override
63576357
- Added new command line argument --config-delete to delete a config value and revert to the default
6358-
- Improved overall performance by optimising tokenising and next/prev methods (feature request [#12421][pear-12421])
6358+
- Improved overall performance by optimising tokenizing and next/prev methods (feature request [#12421][pear-12421])
63596359
- Thanks to [Christian Weiske][@cweiske] for the patch
63606360
- Added FunctionCallSignatureSniff to Squiz standard
63616361
- Added @subpackage support to file and class comment sniffs in PEAR standard (feature request [#12382][pear-12382])
@@ -6518,7 +6518,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
65186518
- Added Squiz LowercaseClassKeywordsSniff to ensure all class declaration keywords are lowercase
65196519
- Added Squiz LowercaseFunctionKeywordsSniff to ensure all function declaration keywords are lowercase
65206520
- Added Squiz LowercasePHPFunctionsSniff to ensure all calls to inbuilt PHP functions are lowercase
6521-
- Added Squiz CastSpacingSniff to ensure cast statements dont contain whitespace
6521+
- Added Squiz CastSpacingSniff to ensure cast statements don't contain whitespace
65226522
- Errors no longer thrown when checking 0 length files with verbosity on
65236523

65246524
### Fixed
@@ -6583,7 +6583,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
65836583
- Errors no longer thrown on __autoload functions in PEAR ValidFunctionNameSniff
65846584
- Errors now thrown for __autoload methods in PEAR ValidFunctionNameSniff
65856585
- Errors now thrown if constructors or destructors have @return tags in Squiz FunctionCommentSniff
6586-
- Errors now thrown if @throws tags dont start with a capital and end with a full stop in Squiz FunctionCommentSniff
6586+
- Errors now thrown if @throws tags don't start with a capital and end with a full stop in Squiz FunctionCommentSniff
65876587
- Errors now thrown for invalid @var tag values in Squiz VariableCommentSniff
65886588
- Errors now thrown for missing doc comment in Squiz VariableCommentSniff
65896589
- Errors now thrown for unspaced operators in FOR loop declarations in Squiz OperatorSpacingSniff
@@ -6726,7 +6726,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
67266726
- Removed the including of checked files to stop errors caused by parsing them
67276727
- Removed the use of reflection so checked files do not have to be included
67286728
- Memory usage has been greatly reduced
6729-
- Much faster tokenising and checking times
6729+
- Much faster tokenizing and checking times
67306730
- Reworked the PEAR coding standard sniffs (much faster now)
67316731
- Fix some bugs with the PEAR scope indentation standard
67326732
- Better checking for installed coding standards
@@ -6736,7 +6736,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
67366736
- Added an option to hide warnings from reports
67376737
- Added an option to print verbose output (so you know what is going on)
67386738
- Reordered command line args to put switches first (although order is not enforced)
6739-
- Switches can now be specified together (eg. php -nv) as well as separately (phpcs -n -v)
6739+
- Switches can now be specified together (e.g. php -nv) as well as separately (phpcs -n -v)
67406740

67416741
## 0.0.1 - 2006-07-19
67426742
### Added

0 commit comments

Comments
 (0)