style: Indent properly a couple more functions.

This commit is contained in:
Emilio Cobos Álvarez 2018-02-24 23:23:16 +01:00
parent a6c6ef91e0
commit 13f61a6e5f
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
5 changed files with 46 additions and 31 deletions

View file

@ -384,8 +384,9 @@ impl fmt::Display for TraversalStatistics {
impl TraversalStatistics {
/// Computes the traversal time given the start time in seconds.
pub fn finish<E, D>(&mut self, traversal: &D, parallel: bool, start: f64)
where E: TElement,
D: DomTraversal<E>,
where
E: TElement,
D: DomTraversal<E>,
{
let threshold = traversal.shared_context().options.style_statistics_threshold;
let stylist = traversal.shared_context().stylist;