docs: fix non-string ignore note in path.resolve
authorJakob Gillich <jakob@gillich.me>
Wed, 25 Jun 2014 17:08:46 +0000 (19:08 +0200)
committerFedor Indutny <fedor@indutny.com>
Thu, 31 Jul 2014 18:59:30 +0000 (22:59 +0400)
Reviewed-By: Fedor Indutny <fedor@indutny.com>
doc/api/path.markdown

index e01fa8b..602fa06 100644 (file)
@@ -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.