@@ -500,7 +500,7 @@ added: v0.1.10
500
500
501
501
Returns ` true ` if the ` fs.Stats ` object describes a symbolic link.
502
502
503
- This method is only valid when using [ ` fs.lstat() ` ] [ ]
503
+ This method is only valid when using [ ` fs.lstat() ` ] [ ] .
504
504
505
505
### stats.dev
506
506
@@ -1038,7 +1038,7 @@ changes:
1038
1038
Asynchronously changes the permissions of a file. No arguments other than a
1039
1039
possible exception are given to the completion callback.
1040
1040
1041
- See also: chmod(2)
1041
+ See also: chmod(2).
1042
1042
1043
1043
### File modes
1044
1044
@@ -1097,7 +1097,7 @@ changes:
1097
1097
Synchronously changes the permissions of a file. Returns ` undefined ` .
1098
1098
This is the synchronous version of [ ` fs.chmod() ` ] [ ] .
1099
1099
1100
- See also: chmod(2)
1100
+ See also: chmod(2).
1101
1101
1102
1102
## fs.chown(path, uid, gid, callback)
1103
1103
<!-- YAML
@@ -1126,7 +1126,7 @@ changes:
1126
1126
Asynchronously changes owner and group of a file. No arguments other than a
1127
1127
possible exception are given to the completion callback.
1128
1128
1129
- See also: chown(2)
1129
+ See also: chown(2).
1130
1130
1131
1131
## fs.chownSync(path, uid, gid)
1132
1132
<!-- YAML
@@ -1145,7 +1145,7 @@ changes:
1145
1145
Synchronously changes owner and group of a file. Returns ` undefined ` .
1146
1146
This is the synchronous version of [ ` fs.chown() ` ] [ ] .
1147
1147
1148
- See also: chown(2)
1148
+ See also: chown(2).
1149
1149
1150
1150
## fs.close(fd, callback)
1151
1151
<!-- YAML
@@ -1711,7 +1711,8 @@ given to the completion callback.
1711
1711
If the file referred to by the file descriptor was larger than ` len ` bytes, only
1712
1712
the first ` len ` bytes will be retained in the file.
1713
1713
1714
- For example, the following program retains only the first four bytes of the file
1714
+ For example, the following program retains only the first four bytes of the
1715
+ file:
1715
1716
1716
1717
``` js
1717
1718
console .log (fs .readFileSync (' temp.txt' , ' utf8' ));
@@ -1985,7 +1986,7 @@ changes:
1985
1986
Asynchronously creates a directory. No arguments other than a possible exception
1986
1987
are given to the completion callback.
1987
1988
1988
- See also: mkdir(2)
1989
+ See also: mkdir(2).
1989
1990
1990
1991
## fs.mkdirSync(path[ , mode] )
1991
1992
<!-- YAML
@@ -2003,7 +2004,7 @@ changes:
2003
2004
Synchronously creates a directory. Returns ` undefined ` .
2004
2005
This is the synchronous version of [ ` fs.mkdir() ` ] [ ] .
2005
2006
2006
- See also: mkdir(2)
2007
+ See also: mkdir(2).
2007
2008
2008
2009
## fs.mkdtemp(prefix[ , options] , callback)
2009
2010
<!-- YAML
@@ -2868,7 +2869,7 @@ fs.unlink('path/file.txt', (err) => {
2868
2869
` fs.unlink() ` will not work on a directory, empty or otherwise. To remove a
2869
2870
directory, use [ ` fs.rmdir() ` ] [ ] .
2870
2871
2871
- See also: unlink(2)
2872
+ See also: unlink(2).
2872
2873
2873
2874
## fs.unlinkSync(path)
2874
2875
<!-- YAML
0 commit comments