minidom: Fix code style

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2019-11-06 03:51:58 +01:00
parent 877d5c21da
commit 276dc4fcb2
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -183,7 +183,8 @@ impl Node {
}
impl<I> From<I> for Node
where I: Into<Element>
where
I: Into<Element>,
{
fn from(elm: I) -> Node {
Node::Element(elm.into())