diff options
author | Ariel Miculas <amiculas@cisco.com> | 2023-10-27 17:21:01 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2023-11-17 16:42:21 +0100 |
commit | 4746be1d222d7cdfdbe90a71370ffd2e0baa24d0 (patch) | |
tree | 05c007740a21c85fdfc4fc41cd19e03abab5a6c0 /Documentation/filesystems | |
parent | docs/sp_SP: Add translation of process/handling-regressions (diff) | |
download | linux-4746be1d222d7cdfdbe90a71370ffd2e0baa24d0.tar.xz linux-4746be1d222d7cdfdbe90a71370ffd2e0baa24d0.zip |
docs: vfs: fix typo in struct xattr_handlers
The structure is called struct xattr_handler, singular, not plural.
Fixing the typo also makes it greppable with the whole word matching
flag.
Signed-off-by: Ariel Miculas <amiculas@cisco.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20231027152101.226296-1-amiculas@cisco.com>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r-- | Documentation/filesystems/vfs.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/vfs.rst b/Documentation/filesystems/vfs.rst index 99acc2e98673..276a219ff8d9 100644 --- a/Documentation/filesystems/vfs.rst +++ b/Documentation/filesystems/vfs.rst @@ -437,7 +437,7 @@ field. This is a pointer to a "struct inode_operations" which describes the methods that can be performed on individual inodes. -struct xattr_handlers +struct xattr_handler --------------------- On filesystems that support extended attributes (xattrs), the s_xattr |