diff options
author | Daan Sprenkels <dsprenkels@gmail.com> | 2016-10-30 21:50:57 +0100 |
---|---|---|
committer | Daan Sprenkels <dsprenkels@gmail.com> | 2016-10-31 18:11:37 +0100 |
commit | 66059904b74a4dacbec8393d639d69cfd9011ea7 (patch) | |
tree | fbdff7eaefbe1a5918851b24b37c8cdf50a61874 /components/layout/construct.rs | |
parent | 179e11ad8d834dbbc4fc14209ce0c9b169085df4 (diff) | |
download | servo-66059904b74a4dacbec8393d639d69cfd9011ea7.tar.gz servo-66059904b74a4dacbec8393d639d69cfd9011ea7.zip |
Remove extra spaces in function calls and declarations
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 03d7e767f69..572498aad35 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -1620,7 +1620,7 @@ impl<ConcreteThreadSafeLayoutNode> NodeUtils for ConcreteThreadSafeLayoutNode fn construction_result_mut(self, data: &mut PersistentLayoutData) -> &mut ConstructionResult { match self.get_pseudo_element_type() { PseudoElementType::Before(_) => &mut data.before_flow_construction_result, - PseudoElementType::After (_) => &mut data.after_flow_construction_result, + PseudoElementType::After(_) => &mut data.after_flow_construction_result, PseudoElementType::DetailsSummary(_) => &mut data.details_summary_flow_construction_result, PseudoElementType::DetailsContent(_) => &mut data.details_content_flow_construction_result, PseudoElementType::Normal => &mut data.flow_construction_result, |