From 87e6ef3ddea84c1afddd5a7a28025fa1baf16c80 Mon Sep 17 00:00:00 2001 From: lqd Date: Fri, 11 Jan 2019 16:35:26 +0100 Subject: [PATCH] Typo fix in new doc-comment Co-Authored-By: SimonSapin --- components/style_traits/values.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style_traits/values.rs b/components/style_traits/values.rs index 0d7ee3f506c..582e34eb3db 100644 --- a/components/style_traits/values.rs +++ b/components/style_traits/values.rs @@ -432,7 +432,7 @@ impl_to_css_for_predefined_type!(::cssparser::RGBA); impl_to_css_for_predefined_type!(::cssparser::Color); impl_to_css_for_predefined_type!(::cssparser::UnicodeRange); -/// Define an enum type with unit variants that each corrsepond to a CSS keyword. +/// Define an enum type with unit variants that each correspond to a CSS keyword. macro_rules! define_css_keyword_enum { (pub enum $name:ident { $($variant:ident = $css:expr,)+ }) => { #[allow(missing_docs)]