style: followup post-review nit.

This commit is contained in:
Emilio Cobos Álvarez 2018-11-07 00:18:29 +01:00
parent de5584c1f6
commit 264a679c50
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -86,8 +86,7 @@ pub struct QuotePair {
/// Specified and computed `quotes` property. /// Specified and computed `quotes` property.
#[derive(Clone, Debug, MallocSizeOf, PartialEq, SpecifiedValueInfo, ToComputedValue, ToCss)] #[derive(Clone, Debug, MallocSizeOf, PartialEq, SpecifiedValueInfo, ToComputedValue, ToCss)]
pub struct Quotes( pub struct Quotes(
#[css(if_empty = "none")] #[css(iterable, if_empty = "none")]
#[css(iterable)]
#[ignore_malloc_size_of = "Arc"] #[ignore_malloc_size_of = "Arc"]
pub Arc<Box<[QuotePair]>> pub Arc<Box<[QuotePair]>>
); );