From 1d6e5e71089cc4001639757b9f75ee6fc4744e1e Mon Sep 17 00:00:00 2001 From: varkor Date: Mon, 21 Jan 2019 15:53:45 -0800 Subject: [PATCH] Fix typo Co-Authored-By: estebank --- src/libsyntax_pos/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax_pos/lib.rs b/src/libsyntax_pos/lib.rs index 7f52d1335f728..b6b9b608531e4 100644 --- a/src/libsyntax_pos/lib.rs +++ b/src/libsyntax_pos/lib.rs @@ -732,7 +732,7 @@ impl MultiSpan { span_labels } - /// Returns wether any of the span labels is displayable. + /// Returns whether any of the span labels is displayable. pub fn has_span_labels(&self) -> bool { self.span_labels.iter().any(|(sp, _)| !sp.is_dummy()) }