diff --git a/src/fs.rs b/src/fs.rs index c41ad5a0b..873d54302 100644 --- a/src/fs.rs +++ b/src/fs.rs @@ -642,7 +642,7 @@ impl FileAllocation { pub struct File<'a, 'b, S: driver::Storage> { // We must store a raw pointer here since the FFI retains a copy of a pointer - // to the field alloc.state, so we cannot assert unique mutable access. + // to the field alloc.state, so we cannot assert unique mutable access. alloc: RefCell<*mut FileAllocation>, fs: &'b Filesystem<'a, S>, } @@ -1054,7 +1054,7 @@ impl ReadDirAllocation { pub struct ReadDir<'a, 'b, S: driver::Storage> { // We must store a raw pointer here since the FFI retains a copy of a pointer - // to the field alloc.state, so we cannot assert unique mutable access. + // to the field alloc.state, so we cannot assert unique mutable access. alloc: RefCell<*mut ReadDirAllocation>, fs: &'b Filesystem<'a, S>, #[cfg(feature = "dir-entry-path")]