aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
authorVicki Pfau <vi@endrift.com>2024-03-05 18:08:26 -0800
committerJan Kara <jack@suse.cz>2024-03-06 13:13:00 +0100
commite225555028bd3671ad6f4ce72405a95d62e17371 (patch)
tree74dac1abcb33b5f3362c2dd940735a4219b319ba /include/uapi
parentb7dbaace39713025f1fd33407c89651a0c09f667 (diff)
downloadlinux-e225555028bd3671ad6f4ce72405a95d62e17371.tar.gz
inotify: Fix misspelling of "writable"
Several file system notification system headers have "writable" misspelled as "writtable" in the comments. This patch fixes it in the inotify header. Signed-off-by: Vicki Pfau <vi@endrift.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20240306020831.1404033-1-vi@endrift.com>
Diffstat (limited to 'include/uapi')
-rw-r--r--include/uapi/linux/inotify.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/inotify.h b/include/uapi/linux/inotify.h
index b3e165853d5b4..d94f20e38e5d3 100644
--- a/include/uapi/linux/inotify.h
+++ b/include/uapi/linux/inotify.h
@@ -30,8 +30,8 @@ struct inotify_event {
#define IN_ACCESS 0x00000001 /* File was accessed */
#define IN_MODIFY 0x00000002 /* File was modified */
#define IN_ATTRIB 0x00000004 /* Metadata changed */
-#define IN_CLOSE_WRITE 0x00000008 /* Writtable file was closed */
-#define IN_CLOSE_NOWRITE 0x00000010 /* Unwrittable file closed */
+#define IN_CLOSE_WRITE 0x00000008 /* Writable file was closed */
+#define IN_CLOSE_NOWRITE 0x00000010 /* Unwritable file closed */
#define IN_OPEN 0x00000020 /* File was opened */
#define IN_MOVED_FROM 0x00000040 /* File was moved from X */
#define IN_MOVED_TO 0x00000080 /* File was moved to Y */