Skip to content

Commit

Permalink
doc: fix code example in fs.symlink method
Browse files Browse the repository at this point in the history
Fixes: #40413
  • Loading branch information
juanarbol committed Oct 11, 2021
1 parent 40db88b commit 25dc26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/fs.md
Expand Up @@ -3661,7 +3661,7 @@ Relative targets are relative to the link’s parent directory.
```mjs
import { symlink } from 'fs';
symlink('./mew', './example/mewtwo', callback);
symlink('./mew', './mewtwo', callback);
```

The above example creates a symbolic link `mewtwo` in the `example` which points
Expand Down

0 comments on commit 25dc26f

Please sign in to comment.