From 60ac9bfa17dbd55203c3168892ae64968b1fffbf Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 13 Dec 2020 14:21:24 +1100 Subject: [PATCH] docs: fix simple typo, insted -> instead (#12) There is a small typo in simple.c. Should read `instead` rather than `insted`. --- simple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple.c b/simple.c index 6ca5aa4..4d735ca 100644 --- a/simple.c +++ b/simple.c @@ -504,7 +504,7 @@ static int simplefs_create_fs_object(struct inode *dir, struct dentry *dentry, } if (unlikely(count >= SIMPLEFS_MAX_FILESYSTEM_OBJECTS_SUPPORTED)) { - /* The above condition can be just == insted of the >= */ + /* The above condition can be just == instead of the >= */ printk(KERN_ERR "Maximum number of objects supported by simplefs is already reached"); mutex_unlock(&simplefs_directory_children_update_lock);