From 115c94c748f14e182de7d44f744b454f0fb7c92a Mon Sep 17 00:00:00 2001 From: Ryan Zimmerman Date: Wed, 22 May 2019 13:46:34 -0400 Subject: [PATCH] Clarify docs for remove*() Closes #659 --- docs/remove-sync.md | 2 +- docs/remove.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/remove-sync.md b/docs/remove-sync.md index fb01fe82..56fa9ada 100644 --- a/docs/remove-sync.md +++ b/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` `` diff --git a/docs/remove.md b/docs/remove.md index 0cdcf7ac..be319fa3 100644 --- a/docs/remove.md +++ b/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` `` - `callback` ``