From cbae7c61317ddbb1af532c2b681979bd5310402e Mon Sep 17 00:00:00 2001 From: Felix Rabe Date: Mon, 30 Jul 2018 10:04:22 +0200 Subject: [PATCH] Fix copy paste typo --- components/servo/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/servo/lib.rs b/components/servo/lib.rs index 100742418787..76e96cc3c15f 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -350,7 +350,7 @@ impl Servo where Window: WindowMethods + 'static { WindowEvent::SendError(ctx, e) => { let msg = ConstellationMsg::SendError(ctx, e); if let Err(e) = self.constellation_chan.send(msg) { - warn!("Sending CloseBrowser message to constellation failed ({}).", e); + warn!("Sending SendError message to constellation failed ({}).", e); } } }