@@ -500,7 +500,7 @@ added: v0.1.10
500500
501501Returns ` true ` if the ` fs.Stats ` object describes a symbolic link.
502502
503- This method is only valid when using [ ` fs.lstat() ` ] [ ]
503+ This method is only valid when using [ ` fs.lstat() ` ] [ ] .
504504
505505### stats.dev
506506
@@ -1038,7 +1038,7 @@ changes:
10381038Asynchronously changes the permissions of a file. No arguments other than a
10391039possible exception are given to the completion callback.
10401040
1041- See also: chmod(2)
1041+ See also: chmod(2).
10421042
10431043### File modes
10441044
@@ -1097,7 +1097,7 @@ changes:
10971097Synchronously changes the permissions of a file. Returns ` undefined ` .
10981098This is the synchronous version of [ ` fs.chmod() ` ] [ ] .
10991099
1100- See also: chmod(2)
1100+ See also: chmod(2).
11011101
11021102## fs.chown(path, uid, gid, callback)
11031103<!-- YAML
@@ -1126,7 +1126,7 @@ changes:
11261126Asynchronously changes owner and group of a file. No arguments other than a
11271127possible exception are given to the completion callback.
11281128
1129- See also: chown(2)
1129+ See also: chown(2).
11301130
11311131## fs.chownSync(path, uid, gid)
11321132<!-- YAML
@@ -1145,7 +1145,7 @@ changes:
11451145Synchronously changes owner and group of a file. Returns ` undefined ` .
11461146This is the synchronous version of [ ` fs.chown() ` ] [ ] .
11471147
1148- See also: chown(2)
1148+ See also: chown(2).
11491149
11501150## fs.close(fd, callback)
11511151<!-- YAML
@@ -1711,7 +1711,8 @@ given to the completion callback.
17111711If the file referred to by the file descriptor was larger than ` len ` bytes, only
17121712the first ` len ` bytes will be retained in the file.
17131713
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:
17151716
17161717``` js
17171718console .log (fs .readFileSync (' temp.txt' , ' utf8' ));
@@ -1985,7 +1986,7 @@ changes:
19851986Asynchronously creates a directory. No arguments other than a possible exception
19861987are given to the completion callback.
19871988
1988- See also: mkdir(2)
1989+ See also: mkdir(2).
19891990
19901991## fs.mkdirSync(path[ , mode] )
19911992<!-- YAML
@@ -2003,7 +2004,7 @@ changes:
20032004Synchronously creates a directory. Returns ` undefined ` .
20042005This is the synchronous version of [ ` fs.mkdir() ` ] [ ] .
20052006
2006- See also: mkdir(2)
2007+ See also: mkdir(2).
20072008
20082009## fs.mkdtemp(prefix[ , options] , callback)
20092010<!-- YAML
@@ -2868,7 +2869,7 @@ fs.unlink('path/file.txt', (err) => {
28682869` fs.unlink() ` will not work on a directory, empty or otherwise. To remove a
28692870directory, use [ ` fs.rmdir() ` ] [ ] .
28702871
2871- See also: unlink(2)
2872+ See also: unlink(2).
28722873
28732874## fs.unlinkSync(path)
28742875<!-- YAML
0 commit comments