Remove trailing whitespace

Maxime “pep” Buquet created

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>

Change summary

src/namespace_set.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

src/namespace_set.rs 🔗

@@ -36,7 +36,7 @@ impl NamespaceSet {
     pub fn declared_ns(&self) -> &BTreeMap<Option<String>, String> {
         &self.namespaces
     }
-    
+
     pub fn get(&self, prefix: &Option<String>) -> Option<String> {
         match self.namespaces.get(prefix) {
             Some(ns) => Some(ns.clone()),