Skip to content

Commit ad551a2

Browse files
vegardJonathan Corbet
authored andcommitted
docs: path-lookup: fix HTML entity mojibake
Two cases of "<" somehow turned into "&lt;". 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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jonathan Corbet <[email protected]>
1 parent 76bd58f commit ad551a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Documentation/filesystems/path-lookup.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ tempting to consider that to have an empty final component. In many
7676
ways that would lead to correct results, but not always. In
7777
particular, ``mkdir()`` and ``rmdir()`` each create or remove a directory named
7878
by the final component, and they are required to work with pathnames
79-
ending in "``/``". According to POSIX_
79+
ending in "``/``". According to POSIX_:
8080

81-
A pathname that contains at least one non- &lt;slash> character and
82-
that ends with one or more trailing &lt;slash> characters shall not
81+
A pathname that contains at least one non-<slash> character and
82+
that ends with one or more trailing <slash> characters shall not
8383
be resolved successfully unless the last pathname component before
8484
the trailing <slash> characters names an existing directory or a
8585
directory entry that is to be created for a directory immediately

0 commit comments

Comments
 (0)