style: Reindent yet another function.

This commit is contained in:
Emilio Cobos Álvarez 2018-02-24 22:45:07 +01:00
parent f2a808ad58
commit 76dd4ae05e
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -58,11 +58,12 @@ pub trait Element: Sized + Clone + Debug {
/// Empty string for no namespace /// Empty string for no namespace
fn namespace(&self) -> &<Self::Impl as SelectorImpl>::BorrowedNamespaceUrl; fn namespace(&self) -> &<Self::Impl as SelectorImpl>::BorrowedNamespaceUrl;
fn attr_matches(&self, fn attr_matches(
ns: &NamespaceConstraint<&<Self::Impl as SelectorImpl>::NamespaceUrl>, &self,
local_name: &<Self::Impl as SelectorImpl>::LocalName, ns: &NamespaceConstraint<&<Self::Impl as SelectorImpl>::NamespaceUrl>,
operation: &AttrSelectorOperation<&<Self::Impl as SelectorImpl>::AttrValue>) local_name: &<Self::Impl as SelectorImpl>::LocalName,
-> bool; operation: &AttrSelectorOperation<&<Self::Impl as SelectorImpl>::AttrValue>,
) -> bool;
fn match_non_ts_pseudo_class<F>( fn match_non_ts_pseudo_class<F>(
&self, &self,