From 960e57d9fc0d209308c8e15dc26252bbe1ff6ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Tue, 19 Mar 2024 14:05:47 +0100 Subject: [PATCH] Run cargo fmt --- src/fs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")]