From 276dc4fcb2c006cb6c1db272722cec62a01e2937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 6 Nov 2019 03:51:58 +0100 Subject: [PATCH] minidom: Fix code style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- minidom-rs/src/node.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/minidom-rs/src/node.rs b/minidom-rs/src/node.rs index 4a6802e6..33f3ad03 100644 --- a/minidom-rs/src/node.rs +++ b/minidom-rs/src/node.rs @@ -183,7 +183,8 @@ impl Node { } impl From for Node -where I: Into +where + I: Into, { fn from(elm: I) -> Node { Node::Element(elm.into())