docs: fix simple typo, insted -> instead (#12)

There is a small typo in simple.c.

Should read `instead` rather than `insted`.
This commit is contained in:
Tim Gates 2020-12-13 14:21:24 +11:00 committed by GitHub
parent 451cb1bb73
commit 60ac9bfa17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);