From 58fd2956b339781c963f14eb9edb9ae71858e68b Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Wed, 26 Jul 2017 21:29:08 +0000 Subject: [PATCH] Fix typo in comment. --- components/style_derive/to_css.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('_');