Skip to content

Commit

Permalink
Remove sketchy citebite links in documentation (#973)
Browse files Browse the repository at this point in the history
I tried to follow these links, and they led me to really sketchy websites that have nothing to do with Node.js at all.
  • Loading branch information
leafac committed Oct 21, 2022
1 parent 0220eac commit 656545c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/outputFile-sync.md
@@ -1,6 +1,6 @@
# 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).
Almost the same as `writeFileSync` (i.e. it overwrites), 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).

- `file` `<String>`
- `data` `<String> | <Buffer> | <Uint8Array>`
Expand Down
2 changes: 1 addition & 1 deletion docs/outputFile.md
@@ -1,6 +1,6 @@
# 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).
Almost the same as `writeFile` (i.e. it overwrites), 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).

- `file` `<String>`
- `data` `<String> | <Buffer> | <Uint8Array>`
Expand Down

0 comments on commit 656545c

Please sign in to comment.