From 8275f3b9e389b5b76e62227e66ad5c9488bb0e63 Mon Sep 17 00:00:00 2001 From: Ryman Date: Sat, 13 Jun 2015 16:53:26 +0100 Subject: [PATCH] docs(header): fix typos and minor rewording --- src/header/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/header/mod.rs b/src/header/mod.rs index d19d48e2..d5a4c006 100644 --- a/src/header/mod.rs +++ b/src/header/mod.rs @@ -10,11 +10,11 @@ //! Or, why not stringly-typed? Types give the following advantages: //! //! - More difficult to typo, since typos in types should be caught by the compiler -//! - Parsing to a proper type by default\ +//! - Parsing to a proper type by default //! //! # Defining Custom Headers //! -//! Hyper provides a large amount of the most common headers used in HTTP. If +//! Hyper provides many of the most commonly used headers in HTTP. If //! you need to define a custom header, it's easy to do while still taking //! advantage of the type system. Hyper includes a `header!` macro for defining //! many wrapper-style headers. @@ -31,8 +31,8 @@ //! } //! ``` //! -//! This works well for simiple "string" headers. But the header system -//! actually invovles 2 parts: parsing, and formatting. If you need to +//! This works well for simple "string" headers. But the header system +//! actually involves 2 parts: parsing, and formatting. If you need to //! customize either part, you can do so. //! //! ## `Header` and `HeaderFormat`