diff options
author | Vegard Nossum <vegard.nossum@oracle.com> | 2020-07-27 13:45:27 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2020-07-27 16:13:14 -0600 |
commit | ad551a21caade79bfebe9f33afa2d975ec9c0387 (patch) | |
tree | 1a5395df17fd2b7207c12c06cc7b108e0e689880 /Documentation/filesystems/path-lookup.rst | |
parent | 76bd58f3c867f5a6b20d2e30c1c4bb4f9ff0e275 (diff) |
docs: path-lookup: fix HTML entity mojibake
Two cases of "<" somehow turned into "<". I noticed it on
<https://www.kernel.org/doc/html/latest/filesystems/path-lookup.html>.
I've verified that the HTML output is correct with this patch.
Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com>
Link: https://lore.kernel.org/r/20200727114527.23944-1-vegard.nossum@oracle.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/filesystems/path-lookup.rst')
-rw-r--r-- | Documentation/filesystems/path-lookup.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/filesystems/path-lookup.rst b/Documentation/filesystems/path-lookup.rst index e2ba15146365..72a497d9e468 100644 --- a/Documentation/filesystems/path-lookup.rst +++ b/Documentation/filesystems/path-lookup.rst @@ -76,10 +76,10 @@ tempting to consider that to have an empty final component. In many ways that would lead to correct results, but not always. In particular, ``mkdir()`` and ``rmdir()`` each create or remove a directory named by the final component, and they are required to work with pathnames -ending in "``/``". According to POSIX_ +ending in "``/``". According to POSIX_: - A pathname that contains at least one non- <slash> character and - that ends with one or more trailing <slash> characters shall not + A pathname that contains at least one non-<slash> character and + that ends with one or more trailing <slash> characters shall not be resolved successfully unless the last pathname component before the trailing <slash> characters names an existing directory or a directory entry that is to be created for a directory immediately |