diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-04-17 08:32:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 08:32:39 -0400 |
commit | 50817554180199f67268b355e53124f55f68207a (patch) | |
tree | eef9acf5d2a3b6ed847021f58bcafff53cc69061 | |
parent | be4ac6c4cd2ccfd98b0d2663845c18e29f144d88 (diff) | |
parent | ccbd84886b6ea746bd81fde65549cb2b49bd21bf (diff) | |
download | servo-50817554180199f67268b355e53124f55f68207a.tar.gz servo-50817554180199f67268b355e53124f55f68207a.zip |
Auto merge of #20656 - jwatt:patch-1, r=nox
Fix error name in comment for try_match_ident_ignore_ascii_case
Trivial spelling error fix.
<!-- 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/20656)
<!-- Reviewable:end -->
-rw-r--r-- | components/style/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/macros.rs b/components/style/macros.rs index 38060f1d389..f8f4759c148 100644 --- a/components/style/macros.rs +++ b/components/style/macros.rs @@ -47,7 +47,7 @@ macro_rules! trivial_to_computed_value { }; } -/// A macro to parse an identifier, or return an `UnexpectedIndent` error +/// A macro to parse an identifier, or return an `UnexpectedIdent` error /// otherwise. /// /// FIXME(emilio): The fact that `UnexpectedIdent` is a `SelectorParseError` |