Skip to content

Commit

Permalink
Change arounded to surrounded in README.rst
Browse files Browse the repository at this point in the history
Pretty sure arounded isn't a word… I'm assuming it should say surrounded.
  • Loading branch information
Oliver Byford committed Sep 28, 2015
1 parent 3d666f1 commit b790286
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ Choose from the list of available fixers:

* **double_arrow_multiline_whitespaces** [symfony]
Operator => should not be
arounded by multi-line
surrounded by multi-line
whitespaces.

* **duplicate_semicolon** [symfony]
Expand Down Expand Up @@ -359,7 +359,7 @@ Choose from the list of available fixers:

* **operators_spaces** [symfony]
Binary operators should be
arounded by at least one
surrounded by at least one
space.

* **phpdoc_indent** [symfony]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function fix(\SplFileInfo $file, $content)
*/
public function getDescription()
{
return 'Operator => should not be arounded by multi-line whitespaces.';
return 'Operator => should not be surrounded by multi-line whitespaces.';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Symfony/CS/Fixer/Symfony/OperatorsSpacesFixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ public function fix(\SplFileInfo $file, $content)
*/
public function getDescription()
{
return 'Binary operators should be arounded by at least one space.';
return 'Binary operators should be surrounded by at least one space.';
}
}

0 comments on commit b790286

Please sign in to comment.