rename namespaces mod to namespace_set

This commit is contained in:
Astro 2017-08-13 17:29:38 +02:00
parent 7297dbc5fd
commit b141559081
3 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ use std::str::FromStr;
use std::slice; use std::slice;
use convert::{IntoElements, IntoAttributeValue, ElementEmitter}; use convert::{IntoElements, IntoAttributeValue, ElementEmitter};
use namespaces::NamespaceSet; use namespace_set::NamespaceSet;
/// Escape XML text /// Escape XML text
pub fn write_escaped<W: Write>(writer: &mut W, input: &str) -> Result<()> { pub fn write_escaped<W: Write>(writer: &mut W, input: &str) -> Result<()> {

View file

@ -70,7 +70,7 @@ extern crate quick_xml;
pub mod error; pub mod error;
pub mod element; pub mod element;
pub mod convert; pub mod convert;
mod namespaces; mod namespace_set;
#[cfg(test)] mod tests; #[cfg(test)] mod tests;