fix typos

This commit is contained in:
Ryan Dahl 2010-04-29 10:11:06 -07:00
parent f919216446
commit c75e4cb48a

View File

@ -2380,7 +2380,7 @@ is no '.' then it returns an empty string. Examples:
Test whether or not the given path exists. Then, call the `callback` argument with either true or false. Example:
path.exists('/etc/passwd', function (exists) {
sys.debug(exists ? 'it's there' : 'no passwd!');
sys.debug(exists ? "it's there" : "no passwd!");
});