Skip to content

Commit

Permalink
Clarify docs for remove*() (#690)
Browse files Browse the repository at this point in the history
Closes #659
  • Loading branch information
RyanZim authored May 23, 2019
1 parent fff04cb commit 31e177a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/remove-sync.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# removeSync(path)

Removes a file or directory. The directory can have contents. Like `rm -rf`.
Removes a file or directory. The directory can have contents. If the path does not exist, silently does nothing. Like `rm -rf`.

- `path` `<String>`

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

Removes a file or directory. The directory can have contents. Like `rm -rf`.
Removes a file or directory. The directory can have contents. If the path does not exist, silently does nothing. Like `rm -rf`.

- `path` `<String>`
- `callback` `<Function>`
Expand Down

0 comments on commit 31e177a

Please sign in to comment.