Skip to content

Commit

Permalink
auto merge of rust-lang#13103 : mozilla-servo/rust/url-totaleq, r=ale…
Browse files Browse the repository at this point in the history
…xcrichton
  • Loading branch information
bors committed Mar 23, 2014
2 parents 903e838 + aa39d75 commit bc37b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/liburl/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ use collections::HashMap;
/// fragment: Some(~"quz") };
/// // https://username@example.com:8080/foo/bar?baz=qux#quz
/// ```
#[deriving(Clone, Eq)]
#[deriving(Clone, Eq, TotalEq)]
pub struct Url {
/// The scheme part of a URL, such as `https` in the above example.
scheme: ~str,
Expand Down Expand Up @@ -79,7 +79,7 @@ pub struct Path {
}

/// An optional subcomponent of a URI authority component.
#[deriving(Clone, Eq)]
#[deriving(Clone, Eq, TotalEq)]
pub struct UserInfo {
/// The user name.
user: ~str,
Expand Down

0 comments on commit bc37b8f

Please sign in to comment.