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

@ -135,7 +135,8 @@ where
}
impl<'a, E> fmt::Debug for ElementWrapper<'a, E>
where E: TElement,
where
E: TElement,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
// Ignore other fields for now, can change later if needed.
@ -144,7 +145,8 @@ impl<'a, E> fmt::Debug for ElementWrapper<'a, E>
}
impl<'a, E> Element for ElementWrapper<'a, E>
where E: TElement,
where
E: TElement,
{
type Impl = SelectorImpl;