Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup: speeling
  • Loading branch information
MylesBorins committed Aug 13, 2018
commit 9cf4630a287a988139f5fb8beedc1a4afa1aa258
4 changes: 2 additions & 2 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2087,7 +2087,7 @@ fs.mkdir('/tmp/a/apple', { recursive: true }, (err) => {
```

The `util.features` symbol can be used to feature detect if
recusion is available.
recursion is available.

```js
fs.mkdir[util.features].recursive;
Expand Down Expand Up @@ -2115,7 +2115,7 @@ Synchronously creates a directory. Returns `undefined`.
This is the synchronous version of [`fs.mkdir()`][].

The `util.features` symbol can be used to feature detect if
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Link to util.features?

recusion is available.
recursion is available.

```js
fs.mkdirSync[util.features].recursive;
Expand Down