From f23fe485c31e309a8391f54b747ee891ab149e34 Mon Sep 17 00:00:00 2001 From: Takanori Ishibashi Date: Mon, 31 Oct 2016 22:52:36 +0900 Subject: [PATCH] Fix typo recieve -> receive --- components/constellation/constellation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs index ea815debf89..3ce78026141 100644 --- a/components/constellation/constellation.rs +++ b/components/constellation/constellation.rs @@ -1019,7 +1019,7 @@ impl Constellation fn handle_shutdown(&mut self) { // At this point, there are no active pipelines, // so we can safely block on other threads, without worrying about deadlock. - // Channels to recieve signals when threads are done exiting. + // Channels to receive signals when threads are done exiting. let (core_sender, core_receiver) = ipc::channel().expect("Failed to create IPC channel!"); let (storage_sender, storage_receiver) = ipc::channel().expect("Failed to create IPC channel!");