Skip to content

Update to rustc d7e1bb5ff 2014-09-21 01:00:29 +0000 #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 22, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/reader/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
use std::fmt;

use common;
use common::{Name, Error, HasPosition, Attribute, XmlVersion};
use common::{Name, HasPosition, Attribute, XmlVersion};
use common::Error as CommonError;
use namespace::Namespace;

/// An element of an XML input stream.
Expand Down Expand Up @@ -117,7 +118,7 @@ pub enum XmlEvent {
/// as is required by XML specification, [section 1.2][1].
///
/// [1]: http://www.w3.org/TR/2006/REC-xml11-20060816/#sec-terminology
Error(common::Error)
Error(CommonError)
}

impl fmt::Show for XmlEvent {
Expand Down