We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fs.symlink
1 parent 40db88b commit b79f2c1Copy full SHA for b79f2c1
doc/api/fs.md
@@ -3661,11 +3661,11 @@ Relative targets are relative to the link’s parent directory.
3661
```mjs
3662
import { symlink } from 'fs';
3663
3664
-symlink('./mew', './example/mewtwo', callback);
+symlink('./mew', './mewtwo', callback);
3665
```
3666
3667
-The above example creates a symbolic link `mewtwo` in the `example` which points
3668
-to `mew` in the same directory:
+The above example creates a symbolic link `mewtwo` which points to `mew` in the
+same directory:
3669
3670
```bash
3671
$ tree example/
0 commit comments