aboutsummaryrefslogtreecommitdiffstats
path: root/ports
diff options
context:
space:
mode:
authorCameron McCormack <cam@mcc.id.au>2017-12-04 10:33:01 +0800
committerGitHub <noreply@github.com>2017-12-04 10:33:01 +0800
commit89bf25b879cc26db86b91db10ae6c1e3aa1ee7f4 (patch)
treeb41222e8e9aabac3120e57db34898b97478cd484 /ports
parente4dba3abef2a4941c5a4d95d58ae0b864ad10961 (diff)
downloadservo-89bf25b879cc26db86b91db10ae6c1e3aa1ee7f4.tar.gz
servo-89bf25b879cc26db86b91db10ae6c1e3aa1ee7f4.zip
geckolib: Fix typo in CSS parser error message name.
Diffstat (limited to 'ports')
-rw-r--r--ports/geckolib/error_reporter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/geckolib/error_reporter.rs b/ports/geckolib/error_reporter.rs
index b39a7c69515..9e1de9b9942 100644
--- a/ports/geckolib/error_reporter.rs
+++ b/ports/geckolib/error_reporter.rs
@@ -251,7 +251,7 @@ impl<'a> ErrorHelpers<'a> for ContextualParseError<'a> {
ContextualParseError::UnsupportedPropertyDeclaration(..) =>
(b"PEUnknownProperty\0", Action::Drop),
ContextualParseError::UnsupportedFontFaceDescriptor(..) =>
- (b"PEUnknwnFontDesc\0", Action::Skip),
+ (b"PEUnknownFontDesc\0", Action::Skip),
ContextualParseError::InvalidKeyframeRule(..) =>
(b"PEKeyframeBadName\0", Action::Nothing),
ContextualParseError::UnsupportedKeyframePropertyDeclaration(..) =>