Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
trivial: Doc typo and lint fix
  • Loading branch information
isaacs committed Jun 19, 2012
1 parent 252f034 commit f105f2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/api/cluster.markdown
Expand Up @@ -58,7 +58,7 @@ create one, and pass the handle to the child.


This causes potentially surprising behavior in three edge cases: This causes potentially surprising behavior in three edge cases:


1. `server.listen({fd: 7})` Because the message is passed to the worker, 1. `server.listen({fd: 7})` Because the message is passed to the master,
file descriptor 7 **in the parent** will be listened on, and the file descriptor 7 **in the parent** will be listened on, and the
handle passed to the worker, rather than listening to the worker's handle passed to the worker, rather than listening to the worker's
idea of what the number 7 file descriptor references. idea of what the number 7 file descriptor references.
Expand Down
2 changes: 1 addition & 1 deletion lib/querystring.js
Expand Up @@ -151,7 +151,7 @@ QueryString.stringify = QueryString.encode = function(obj, sep, eq, name) {
}).join(sep); }).join(sep);


} }

if (!name) return ''; if (!name) return '';
return QueryString.escape(stringifyPrimitive(name)) + eq + return QueryString.escape(stringifyPrimitive(name)) + eq +
QueryString.escape(stringifyPrimitive(obj)); QueryString.escape(stringifyPrimitive(obj));
Expand Down

0 comments on commit f105f2f

Please sign in to comment.