Commit ad551a21 authored by Vegard Nossum's avatar Vegard Nossum Committed by Jonathan Corbet
Browse files

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: default avatarVegard Nossum <vegard.nossum@oracle.com>
Link: https://lore.kernel.org/r/20200727114527.23944-1-vegard.nossum@oracle.com


Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent 76bd58f3
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -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
ways that would lead to correct results, but not always.  In
particular, ``mkdir()`` and ``rmdir()`` each create or remove a directory named
particular, ``mkdir()`` and ``rmdir()`` each create or remove a directory named
by the final component, and they are required to work with pathnames
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- &lt;slash> character and
  A pathname that contains at least one non-<slash> character and
  that ends with one or more trailing &lt;slash> characters shall not
  that ends with one or more trailing <slash> characters shall not
  be resolved successfully unless the last pathname component before
  be resolved successfully unless the last pathname component before
  the trailing <slash> characters names an existing directory or a
  the trailing <slash> characters names an existing directory or a
  directory entry that is to be created for a directory immediately
  directory entry that is to be created for a directory immediately