Browse Source

fix typos

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
c75e4cb48a
  1. 2
      doc/api.markdown

2
doc/api.markdown

@ -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: 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) { path.exists('/etc/passwd', function (exists) {
sys.debug(exists ? 'it's there' : 'no passwd!'); sys.debug(exists ? "it's there" : "no passwd!");
}); });

Loading…
Cancel
Save