Auto merge of #21281 - felixrabe:patch-1, r=paulrouget

Fix copy paste typo

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21281)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-07-30 04:46:34 -04:00 committed by GitHub
commit 2cb7f15e69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -350,7 +350,7 @@ impl<Window> Servo<Window> 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);
}
}
}