Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Commit

Permalink
Rust update.
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsegberts committed Dec 24, 2014
1 parent 42cd5e6 commit 1f4c0b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/httpcommon/headers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ use std::io::IoResult;
use std::raw::TraitObject;
use std::str::SendStr;

use std::collections::hash_map::{HashMap, Occupied, Vacant};
use std::collections::hash_map::HashMap;
use std::collections::hash_map::Entry::{Occupied, Vacant};

use self::internals::Item;
pub use self::internals::{TypedRef, RawRef};
Expand Down Expand Up @@ -302,7 +303,7 @@ impl<'a> Header for &'static (Header + 'static) {
///
/// At this point it is worth recalling that in a request or response, there can be multiple header
/// fields with the same name; this is why the raw representation of each header item is `Vec<Vec<u8>>`
/// rather than `Vec<u8>` each header field can
/// rather than `Vec<u8>` each header field can
/// Each header name is thus associated with an
/// item.
#[deriving(PartialEq)]
Expand Down

0 comments on commit 1f4c0b2

Please sign in to comment.