Skip to content

Commit fd0660f

Browse files
committed
Remove article
1 parent 60732d6 commit fd0660f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/fs/unlink/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if ( err instanceof Error ) {
5555

5656
- If a provided `path` is a symbolic link, the function removes the symbolic link named by the `path` and does not affect any file or directory named by the contents of the symbolic link. Otherwise, the function removes the link named by the provided `path` and decrements the link count of the file referenced by the link.
5757

58-
When a file's link count becomes `0` and no process has the file open, the space occupied by the file is freed and the file is no longer accessible. If one or more processes have the file open when the last link is removed, the link is removed before the function returns; however, the removal of the file contents is postponed until all references to the file are closed.
58+
When a file's link count becomes `0` and no process has the file open, the space occupied by the file is freed and the file is no longer accessible. If one or more processes have the file open when the last link is removed, the link is removed before the function returns; however, the removal of file contents is postponed until all references to the file are closed.
5959

6060
If the `path` refers to a socket, FIFO, or device, processes which have the object open may continue to use it.
6161

lib/node_modules/@stdlib/fs/unlink/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
space occupied by the file is freed and the file is no longer accessible.
1414

1515
If one or more processes have the file open when the last link is removed,
16-
the link is removed before the function returns; however, the removal of the
16+
the link is removed before the function returns; however, the removal of
1717
file contents is postponed until all references to the file are closed.
1818

1919
If the path refers to a socket, FIFO, or device, processes which have the

0 commit comments

Comments
 (0)