From: Ryan Dahl Date: Thu, 29 Apr 2010 17:11:06 +0000 (-0700) Subject: fix typos X-Git-Tag: v0.1.93~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c75e4cb48ae6c0b618c73fda5f72c2708ca1f341;p=platform%2Fupstream%2Fnodejs.git fix typos --- diff --git a/doc/api.markdown b/doc/api.markdown index 6042805..6a99a17 100644 --- a/doc/api.markdown +++ b/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: path.exists('/etc/passwd', function (exists) { - sys.debug(exists ? 'it's there' : 'no passwd!'); + sys.debug(exists ? "it's there" : "no passwd!"); });