Browse Source

Clarify docs for remove*() (#690)

Closes #659
master
Ryan Zimmerman 5 years ago
committed by GitHub
parent
commit
31e177a56c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/remove-sync.md
  2. 2
      docs/remove.md

2
docs/remove-sync.md

@ -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>`

2
docs/remove.md

@ -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>`

Loading…
Cancel
Save