Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.

Commit

Permalink
Fix typo @fileoverfiew -> @fileoverview
Browse files Browse the repository at this point in the history
This was causing warnings such as:

crypto.js:18: WARNING - Parse error. illegal use of unknown JSDoc tag "fileoverfiew"; ignoring it
 * @fileoverfiew Definitions for node's crypto module. Depends on the buffer module.
   ^

Signed-off-by: Kevin Locke <[email protected]>
  • Loading branch information
kevinoid committed Apr 12, 2013
1 parent f17c86e commit 4574d6d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion contrib/Ws.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for the ws module. Depends on the events module.
* @fileoverview Definitions for the ws module. Depends on the events module.
* @see https://github.com/einaros/ws/blob/master/doc/ws.md
* @externs
* @author Daniel Wirtz <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion crypto.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's crypto module. Depends on the buffer module.
* @fileoverview Definitions for node's crypto module. Depends on the buffer module.
* @see http://nodejs.org/api/crypto.html
* @see https://github.com/joyent/node/blob/master/lib/crypto.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion os.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's os module.
* @fileoverview Definitions for node's os module.
* @see http://nodejs.org/api/os.html
* @externs
* @author Daniel Wirtz <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion path.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's path module.
* @fileoverview Definitions for node's path module.
* @see http://nodejs.org/api/path.html
* @externs
* @author Daniel Wirtz <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion stdio.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's stdio module. Depends on the assert module.
* @fileoverview Definitions for node's stdio module. Depends on the assert module.
* @see http://nodejs.org/api/stdio.html
* @externs
* @author Daniel Wirtz <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's stream module. Depends on the events module.
* @fileoverview Definitions for node's stream module. Depends on the events module.
* @see http://nodejs.org/api/stream.html
* @see https://github.com/joyent/node/blob/master/lib/stream.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion tls.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's tls module. Depends on the stream module.
* @fileoverview Definitions for node's tls module. Depends on the stream module.
* @see http://nodejs.org/api/tls.html
* @see https://github.com/joyent/node/blob/master/lib/tls.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion tty.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's tty module. Depends on the net module.
* @fileoverview Definitions for node's tty module. Depends on the net module.
* @see http://nodejs.org/api/tty.html
* @see https://github.com/joyent/node/blob/master/lib/tty.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion url.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's url module.
* @fileoverview Definitions for node's url module.
* @see http://nodejs.org/api/url.html
* @see https://github.com/joyent/node/blob/master/lib/url.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion util.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's util module. Depends on the stream module.
* @fileoverview Definitions for node's util module. Depends on the stream module.
* @see http://nodejs.org/api/util.html
* @see https://github.com/joyent/node/blob/master/lib/util.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion vm.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's vm module.
* @fileoverview Definitions for node's vm module.
* @see http://nodejs.org/api/vm.html
* @see https://github.com/joyent/node/blob/master/lib/vm.js
* @externs
Expand Down
2 changes: 1 addition & 1 deletion zlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* @fileoverfiew Definitions for node's zlib module. Depends on the events and buffer modules.
* @fileoverview Definitions for node's zlib module. Depends on the events and buffer modules.
* @see http://nodejs.org/api/zlib.html
* @see https://github.com/joyent/node/blob/master/lib/zlib.js
* @externs
Expand Down

0 comments on commit 4574d6d

Please sign in to comment.