From 37cfc4d023300a7d9288dccd83071d5d14695494 Mon Sep 17 00:00:00 2001 From: guersam Date: Wed, 30 Oct 2013 12:29:12 +0900 Subject: [PATCH] Fix some typos in error messages --- src/components/main/compositing/run.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/main/compositing/run.rs b/src/components/main/compositing/run.rs index 0a472af39f4..2b9e7a8cbbd 100644 --- a/src/components/main/compositing/run.rs +++ b/src/components/main/compositing/run.rs @@ -230,7 +230,7 @@ pub fn run_compositor(compositor: &CompositorTask) { window_size = new_size; match constellation_chan { Some(ref chan) => chan.send(ResizedWindowMsg(new_size)), - None => error!("Compositor: Recieved resize event without initialized layout chan"), + None => error!("Compositor: Received resize event without initialized layout chan"), } } else { debug!("osmain: dropping window resize since size is still %ux%u", width, height); @@ -247,7 +247,7 @@ pub fn run_compositor(compositor: &CompositorTask) { Some(ref chan) => chan.send(LoadUrlMsg(root_pipeline_id, url::make_url(url_string.to_str(), None), Future::from_value(window_size))), - None => error!("Compositor: Recieved loadurl event without initialized layout chan"), + None => error!("Compositor: Received loadurl event without initialized layout chan"), } } @@ -305,7 +305,7 @@ pub fn run_compositor(compositor: &CompositorTask) { }; match constellation_chan { Some(ref chan) => chan.send(NavigateMsg(direction)), - None => error!("Compositor: Recieved navigation event without initialized layout chan"), + None => error!("Compositor: Received navigation event without initialized layout chan"), } }