Clarify move*() docs (#888)

Fixes #830
This commit is contained in:
Ryan Zimmerman 2021-04-17 15:48:24 -04:00 committed by GitHub
parent af354012a6
commit ce29957eec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
Moves a file or directory, even across devices.
- `src` `<String>`
- `dest` `<String>`
- `dest` `<String>` Note: When `src` is a file, `dest` must be a file and when `src` is a directory, `dest` must be a directory.
- `options` `<Object>`
- `overwrite` `<boolean>`: overwrite existing file or directory, default is `false`.

View File

@ -3,7 +3,7 @@
Moves a file or directory, even across devices.
- `src` `<String>`
- `dest` `<String>`
- `dest` `<String>` Note: When `src` is a file, `dest` must be a file and when `src` is a directory, `dest` must be a directory.
- `options` `<Object>`
- `overwrite` `<boolean>`: overwrite existing file or directory, default is `false`.
- `callback` `<Function>`