Skip to content

Commit

Permalink
docs: refactor to be consistent with node docs (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
manidlou committed Apr 1, 2019
1 parent a678756 commit f847d0b
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/copy-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# copySync(src, dest, [options])
# copySync(src, dest[, options])

Copy a file or directory. The directory can have contents. Like `cp -r`.

Expand Down
2 changes: 1 addition & 1 deletion docs/copy.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# copy(src, dest, [options, callback])
# copy(src, dest[, options][, callback])

Copy a file or directory. The directory can have contents. Like `cp -r`.

Expand Down
2 changes: 1 addition & 1 deletion docs/emptyDir.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# emptyDir(dir, [callback])
# emptyDir(dir[, callback])

Ensures that a directory is empty. Deletes directory contents if the directory is not empty. If the directory does not exist, it is created. The directory itself is not deleted.

Expand Down
2 changes: 1 addition & 1 deletion docs/ensureFile.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ensureFile(file, [callback])
# ensureFile(file[, callback])

Ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is **NOT MODIFIED**.

Expand Down
2 changes: 1 addition & 1 deletion docs/ensureLink.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ensureLink(srcpath, dstpath, [callback])
# ensureLink(srcpath, dstpath[, callback])

Ensures that the link exists. If the directory structure does not exist, it is created.

Expand Down
2 changes: 1 addition & 1 deletion docs/ensureSymlink-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ensureSymlinkSync(srcpath, dstpath, [type])
# ensureSymlinkSync(srcpath, dstpath[, type])

Ensures that the symlink exists. If the directory structure does not exist, it is created.

Expand Down
2 changes: 1 addition & 1 deletion docs/ensureSymlink.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ensureSymlink(srcpath, dstpath, [type, callback])
# ensureSymlink(srcpath, dstpath[, type][, callback])

Ensures that the symlink exists. If the directory structure does not exist, it is created.

Expand Down
2 changes: 1 addition & 1 deletion docs/move-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# moveSync(src, dest, [options])
# moveSync(src, dest[, options])

Moves a file or directory, even across devices.

Expand Down
2 changes: 1 addition & 1 deletion docs/move.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# move(src, dest, [options, callback])
# move(src, dest[, options][, callback])

Moves a file or directory, even across devices.

Expand Down
2 changes: 1 addition & 1 deletion docs/outputFile-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# outputFileSync(file, data, [options])
# outputFileSync(file, data[, options])

Almost the same as `writeFileSync` (i.e. it [overwrites](http://pages.citebite.com/v2o5n8l2f5reb)), except that if the parent directory does not exist, it's created. `file` must be a file path (a buffer or a file descriptor is not allowed). `options` are what you'd pass to [`fs.writeFileSync()`](https://nodejs.org/api/fs.html#fs_fs_writefilesync_file_data_options).

Expand Down
2 changes: 1 addition & 1 deletion docs/outputFile.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# outputFile(file, data, [options, callback])
# outputFile(file, data[, options][, callback])

Almost the same as `writeFile` (i.e. it [overwrites](http://pages.citebite.com/v2o5n8l2f5reb)), except that if the parent directory does not exist, it's created. `file` must be a file path (a buffer or a file descriptor is not allowed). `options` are what you'd pass to [`fs.writeFile()`](https://nodejs.org/api/fs.html#fs_fs_writefile_file_data_options_callback).

Expand Down
2 changes: 1 addition & 1 deletion docs/outputJson-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# outputJsonSync(file, object, [options])
# outputJsonSync(file, object[, options])

Almost the same as [`writeJsonSync`](writeJson-sync.md), except that if the directory does not exist, it's created.

Expand Down
2 changes: 1 addition & 1 deletion docs/outputJson.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# outputJson(file, object, [options, callback])
# outputJson(file, object[, options][, callback])

Almost the same as [`writeJson`](writeJson.md), except that if the directory does not exist, it's created.

Expand Down
2 changes: 1 addition & 1 deletion docs/readJson-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# readJsonSync(file, [options])
# readJsonSync(file[, options])

Reads a JSON file and then parses it into an object. `options` are the same
that you'd pass to [`jsonFile.readFileSync`](https://github.com/jprichardson/node-jsonfile#readfilesyncfilename-options).
Expand Down
2 changes: 1 addition & 1 deletion docs/readJson.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# readJson(file, [options, callback])
# readJson(file[, options][, callback])

Reads a JSON file and then parses it into an object. `options` are the same
that you'd pass to [`jsonFile.readFile`](https://github.com/jprichardson/node-jsonfile#readfilefilename-options-callback).
Expand Down
2 changes: 1 addition & 1 deletion docs/remove.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# remove(path, [callback])
# remove(path[, callback])

Removes a file or directory. The directory can have contents. Like `rm -rf`.

Expand Down
2 changes: 1 addition & 1 deletion docs/writeJson-sync.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# writeJsonSync(file, object, [options])
# writeJsonSync(file, object[, options])

Writes an object to a JSON file.

Expand Down
2 changes: 1 addition & 1 deletion docs/writeJson.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# writeJson(file, object, [options, callback])
# writeJson(file, object[, options][, callback])

Writes an object to a JSON file.

Expand Down

0 comments on commit f847d0b

Please sign in to comment.