docs(cookie): fix examples for Cookie and SetCookie

This commit is contained in:
Sean McArthur
2017-01-10 18:34:56 -08:00
parent 637b170f52
commit 0167f57d65
3 changed files with 1 additions and 12 deletions

View File

@@ -17,19 +17,15 @@ use std::str::from_utf8;
/// ///
/// # Example /// # Example
/// ``` /// ```
/// # extern crate hyper;
/// # extern crate cookie;
/// # fn main() {
/// use hyper::header::{Headers, Cookie}; /// use hyper::header::{Headers, Cookie};
/// ///
/// let mut headers = Headers::new(); /// let mut headers = Headers::new();
/// ///
/// headers.set( /// headers.set(
/// Cookie(vec![ /// Cookie(vec![
/// CookiePair::new("foo".to_owned(), "bar".to_owned()) /// String::from("foo=bar")
/// ]) /// ])
/// ); /// );
/// # }
/// ``` /// ```
#[derive(Clone, PartialEq, Debug)] #[derive(Clone, PartialEq, Debug)]
pub struct Cookie(pub Vec<String>); pub struct Cookie(pub Vec<String>);

View File

@@ -55,11 +55,6 @@ use std::str::from_utf8;
/// ///
/// # Example /// # Example
/// ``` /// ```
/// # extern crate hyper;
/// # extern crate cookie;
/// # fn main() {
/// // extern crate cookie;
///
/// use hyper::header::{Headers, SetCookie}; /// use hyper::header::{Headers, SetCookie};
/// ///
/// let mut headers = Headers::new(); /// let mut headers = Headers::new();
@@ -69,7 +64,6 @@ use std::str::from_utf8;
/// String::from("foo=bar; Path=/path; Domain=example.com") /// String::from("foo=bar; Path=/path; Domain=example.com")
/// ]) /// ])
/// ); /// );
/// # }
/// ``` /// ```
#[derive(Clone, PartialEq, Debug)] #[derive(Clone, PartialEq, Debug)]
pub struct SetCookie(pub Vec<String>); pub struct SetCookie(pub Vec<String>);

View File

@@ -26,7 +26,6 @@ extern crate time;
#[macro_use] extern crate tokio_core as tokio; #[macro_use] extern crate tokio_core as tokio;
extern crate tokio_proto; extern crate tokio_proto;
extern crate tokio_service; extern crate tokio_service;
#[macro_use] extern crate url;
extern crate unicase; extern crate unicase;
#[macro_use] extern crate url; #[macro_use] extern crate url;