diff --git a/components/fs/vfs/vfs_files.h b/components/fs/vfs/vfs_files.h index 180aedbf..ccc0b9c7 100644 --- a/components/fs/vfs/vfs_files.h +++ b/components/fs/vfs/vfs_files.h @@ -78,7 +78,7 @@ struct File { off_t fOffset; INT32 fOwner; struct MountPoint *fMp; - void *fData; /* file system opreations handle, fatfs FIL, etc. */ + void *fData; /* file system operations handle, fatfs FIL, etc. */ const char *fullPath; }; diff --git a/components/fs/vfs/vfs_mount.c b/components/fs/vfs/vfs_mount.c index d6821b1a..c3b16ee8 100644 --- a/components/fs/vfs/vfs_mount.c +++ b/components/fs/vfs/vfs_mount.c @@ -184,7 +184,7 @@ STATIC struct MountPoint *VfsMountPointInit(const char *source, const char *targ return NULL; } - /* Find fsMap coresponding to the fsType */ + /* Find fsMap corresponding to the fsType */ mFs = VfsFsMapGet(fsType); if ((mFs == NULL) || (mFs->fsMops == NULL) || (mFs->fsMops->mount == NULL)) { errno = ENODEV;