Skip to content

Commit 4186172

Browse files
author
Ed Page
committed
style: Run rustfmt
1 parent 4caa847 commit 4186172

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/assert.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@ impl predicates_core::reflection::PredicateReflection for BytesContentPathPredic
245245
}
246246

247247
/// Nested `Predicate`s of the current `Predicate`.
248-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
248+
fn children<'a>(
249+
&'a self,
250+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
249251
self.0.children()
250252
}
251253
}
@@ -321,7 +323,9 @@ impl predicates_core::reflection::PredicateReflection for StrContentPathPredicat
321323
}
322324

323325
/// Nested `Predicate`s of the current `Predicate`.
324-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
326+
fn children<'a>(
327+
&'a self,
328+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
325329
self.0.children()
326330
}
327331
}
@@ -405,7 +409,9 @@ where
405409
}
406410

407411
/// Nested `Predicate`s of the current `Predicate`.
408-
fn children<'a>(&'a self) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
412+
fn children<'a>(
413+
&'a self,
414+
) -> Box<dyn Iterator<Item = predicates_core::reflection::Child<'a>> + 'a> {
409415
self.0.children()
410416
}
411417
}

0 commit comments

Comments
 (0)