Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Gillich <jakob@gillich.me>2014-06-25 21:08:46 +0400
committerFedor Indutny <fedor@indutny.com>2014-07-31 22:59:30 +0400
commit92518892ec8d99a04cee9d51ab071087f06032d2 (patch)
tree81e06522b6f46c48ee9089e4c6306d6aaa02d1cc
parent4f2b08c523c1cd65309c008c3cdd0503c68e863e (diff)
docs: fix non-string ignore note in path.resolve
Reviewed-By: Fedor Indutny <fedor@indutny.com>
-rw-r--r--doc/api/path.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/path.markdown b/doc/api/path.markdown
index e01fa8b223e..602fa0636ae 100644
--- a/doc/api/path.markdown
+++ b/doc/api/path.markdown
@@ -47,7 +47,7 @@ If `to` isn't already absolute `from` arguments are prepended in right to left
order, until an absolute path is found. If after using all `from` paths still
no absolute path is found, the current working directory is used as well. The
resulting path is normalized, and trailing slashes are removed unless the path
-gets resolved to the root directory. Non-string arguments are ignored.
+gets resolved to the root directory. Non-string `from` arguments are ignored.
Another way to think of it is as a sequence of `cd` commands in a shell.