diff options
-rw-r--r-- | components/style_derive/to_css.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style_derive/to_css.rs b/components/style_derive/to_css.rs index 9bc19dc0695..2dbf8731e45 100644 --- a/components/style_derive/to_css.rs +++ b/components/style_derive/to_css.rs @@ -151,7 +151,7 @@ fn where_predicate(ty: syn::Ty) -> syn::WherePredicate { /// Transforms "FooBar" to "foo-bar". /// -/// If the first Camel segment is "Moz"" or "Webkit", the result string +/// If the first Camel segment is "Moz" or "Webkit", the result string /// is prepended with "-". fn to_css_identifier(mut camel_case: &str) -> String { camel_case = camel_case.trim_right_matches('_'); |