Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
docs: more explicit argument names in fs
Browse files Browse the repository at this point in the history
  • Loading branch information
shama authored and bnoordhuis committed Apr 16, 2012
1 parent f065c87 commit 0a83b78
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/api/fs.markdown
Expand Up @@ -62,12 +62,12 @@ the entire process until they complete--halting all connections.
Relative path to filename can be used, remember however that this path will be relative
to `process.cwd()`.

## fs.rename(path1, path2, [callback])
## fs.rename(oldPath, newPath, [callback])

Asynchronous rename(2). No arguments other than a possible exception are given
to the completion callback.

## fs.renameSync(path1, path2)
## fs.renameSync(oldPath, newPath)

Synchronous rename(2).

Expand Down Expand Up @@ -174,14 +174,14 @@ the completion callback.

Synchronous link(2).

## fs.symlink(linkdata, path, [type], [callback])
## fs.symlink(destination, path, [type], [callback])

Asynchronous symlink(2). No arguments other than a possible exception are given
to the completion callback.
`type` argument can be either `'dir'` or `'file'` (default is `'file'`). It is only
used on Windows (ignored on other platforms).

## fs.symlinkSync(linkdata, path, [type])
## fs.symlinkSync(destination, path, [type])

Synchronous symlink(2).

Expand Down Expand Up @@ -513,7 +513,7 @@ callback, and have some fallback logic if it is null.
}
});

## fs.exists(p, [callback])
## fs.exists(path, [callback])

Test whether or not the given path exists by checking with the file system.
Then call the `callback` argument with either true or false. Example:
Expand All @@ -523,7 +523,7 @@ Then call the `callback` argument with either true or false. Example:
});


## fs.existsSync(p)
## fs.existsSync(path)

Synchronous version of `fs.exists`.

Expand Down

0 comments on commit 0a83b78

Please sign in to comment.