diff options
author | Aleksey Kladov <[email protected]> | 2020-06-25 12:47:22 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-06-25 12:47:22 +0100 |
commit | 331addcf61f9e2e0d14541e066dacda453f8fb54 (patch) | |
tree | 44d476d918436ca6ecd92b67ae9141d2208b0d51 /crates/vfs-notify/src | |
parent | 193ea7cf9af8c501035445b42847b6e80b33751a (diff) |
Canonicalize actor API
Diffstat (limited to 'crates/vfs-notify/src')
-rw-r--r-- | crates/vfs-notify/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/vfs-notify/src/lib.rs b/crates/vfs-notify/src/lib.rs index 282cf0358..68fdb8cb0 100644 --- a/crates/vfs-notify/src/lib.rs +++ b/crates/vfs-notify/src/lib.rs | |||
@@ -83,8 +83,8 @@ impl NotifyActor { | |||
83 | } | 83 | } |
84 | } | 84 | } |
85 | 85 | ||
86 | fn run(mut self, receiver: Receiver<Message>) { | 86 | fn run(mut self, inbox: Receiver<Message>) { |
87 | while let Some(event) = self.next_event(&receiver) { | 87 | while let Some(event) = self.next_event(&inbox) { |
88 | log::debug!("vfs-notify event: {:?}", event); | 88 | log::debug!("vfs-notify event: {:?}", event); |
89 | match event { | 89 | match event { |
90 | Event::Message(msg) => match msg { | 90 | Event::Message(msg) => match msg { |