diff options
Diffstat (limited to 'crates/vfs-notify/src/lib.rs')
-rw-r--r-- | crates/vfs-notify/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vfs-notify/src/lib.rs b/crates/vfs-notify/src/lib.rs index baee6ddc8..5b4978285 100644 --- a/crates/vfs-notify/src/lib.rs +++ b/crates/vfs-notify/src/lib.rs | |||
@@ -45,7 +45,7 @@ impl loader::Handle for LoaderHandle { | |||
45 | fn invalidate(&mut self, path: AbsPathBuf) { | 45 | fn invalidate(&mut self, path: AbsPathBuf) { |
46 | self.sender.send(Message::Invalidate(path)).unwrap(); | 46 | self.sender.send(Message::Invalidate(path)).unwrap(); |
47 | } | 47 | } |
48 | fn load_sync(&mut self, path: &AbsPathBuf) -> Option<Vec<u8>> { | 48 | fn load_sync(&mut self, path: &AbsPath) -> Option<Vec<u8>> { |
49 | read(path) | 49 | read(path) |
50 | } | 50 | } |
51 | } | 51 | } |