From c75e4cb48ae6c0b618c73fda5f72c2708ca1f341 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 29 Apr 2010 10:11:06 -0700 Subject: [PATCH] fix typos --- doc/api.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!"); }); -- 2.7.4