style: Adjust comment grammar as suggested by xidorn.

This commit is contained in:
Emilio Cobos Álvarez 2019-08-11 22:47:15 +02:00
parent 0c76998719
commit 0844439bb2
No known key found for this signature in database
GPG key ID: E1152D0994E4BF8A

View file

@ -785,7 +785,7 @@ impl Parse for TextEmphasisStyle {
return Err(input.new_custom_error(StyleParseErrorKind::UnspecifiedError)); return Err(input.new_custom_error(StyleParseErrorKind::UnspecifiedError));
} }
// If a shape keyword is specified but neither of filled nor open is // If a shape keyword is specified but neither filled nor open is
// specified, filled is assumed. // specified, filled is assumed.
let fill = fill.unwrap_or(TextEmphasisFillMode::Filled); let fill = fill.unwrap_or(TextEmphasisFillMode::Filled);