Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Docs: fix various docs typos
Browse files Browse the repository at this point in the history
Fixes #1195
Closes gh-1197
  • Loading branch information
elicwhite authored and markelog committed Mar 26, 2015
1 parent 64afa27 commit c668ff1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* [MDCS](https://github.com/jscs-dev/node-jscs/blob/master/presets/mdcs.json)[https://github.com/mrdoob/three.js/wiki/Mr.doob's-Code-Style™](https://github.com/mrdoob/three.js/wiki/Mr.doob's-Code-Style%E2%84%A2)
* [node-style-guide](https://github.com/jscs-dev/node-jscs/blob/master/presets/node-style-guide.json) - https://github.com/felixge/node-style-guide
* [Wikimedia](https://github.com/jscs-dev/node-jscs/blob/master/presets/wikimedia.json)https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript
* [Wordpress](https://github.com/jscs-dev/node-jscs/blob/master/presets/wordpress.json)https://make.wordpress.org/core/handbook/coding-standards/javascript/
* [Wordpress](https://github.com/jscs-dev/node-jscs/blob/master/presets/wordpress.json)https://make.wordpress.org/core/handbook/coding-standards/javascript/
* [Yandex](https://github.com/jscs-dev/node-jscs/blob/master/presets/yandex.json)https://github.com/yandex/codestyle/blob/master/javascript.md

## Friendly packages
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/disallow-padding-newlines-in-blocks.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Disallows blocks from beginning and ending with 2 newlines.
* Disallows blocks from beginning or ending with 2 newlines.
*
* Type: `Boolean`
*
Expand Down
4 changes: 2 additions & 2 deletions lib/rules/disallow-space-before-block-statements.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* foo();
* } else{
* bar();
}
* }
*
* for (var e in elements){
* bar(e);
Expand All @@ -36,7 +36,7 @@
* foo();
* } else {
* bar();
}
* }
*
* for (var e in elements) {
* bar(e);
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/disallow-spaces-inside-object-brackets.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* }
*
* // or
* * "disallowSpacesInsideObjectBrackets": true | "all" | "nested"
* "disallowSpacesInsideObjectBrackets": true | "all" | "nested"
* ```
*
* ##### Valid for mode `"all"`
Expand Down

0 comments on commit c668ff1

Please sign in to comment.