aboutsummaryrefslogtreecommitdiffstats
path: root/src/element.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/element.rs')
-rw-r--r--src/element.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/element.rs b/src/element.rs
index d883c04..5b5f048 100644
--- a/src/element.rs
+++ b/src/element.rs
@@ -22,7 +22,7 @@ pub struct NamespaceDeclaration {
// names are qualified, they contain a reference to the namespace (held within the reader/writer)
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
pub struct Name {
- pub namespace: String,
+ pub namespace: Option<String>,
pub local_name: String,
}