Skip to content

Commit 58004b8

Browse files
committed
docs(lib): update description of hyper
1 parent 8c393a1 commit 58004b8

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "hyper"
44
version = "0.12.0-pre.0" # don't forget to update html_root_url
5-
description = "A modern HTTP library."
5+
description = "A fast and correct HTTP library."
66
readme = "README.md"
77
homepage = "https://hyper.rs"
88
documentation = "https://docs.rs/hyper"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Released API docs](https://docs.rs/hyper/badge.svg)](https://docs.rs/hyper)
99
[![Master API docs](https://img.shields.io/badge/docs-master-green.svg)](https://hyper.rs/hyper/master/)
1010

11-
A low-level HTTP implementation for Rust.
11+
A **fast** and **correct** HTTP implementation for Rust.
1212

1313
**Get started** by looking over the [guides](https://hyper.rs/guides).
1414

src/lib.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
#![deny(missing_debug_implementations)]
55
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
66

7-
//! # Hyper
7+
//! # hyper
88
//!
9-
//! Hyper is a fast, modern HTTP implementation written in and for Rust. It
10-
//! is a low-level typesafe abstraction over raw HTTP, providing an elegant
11-
//! layer over "stringly-typed" HTTP.
9+
//! hyper is a **fast** and **correct** HTTP implementation written in and for Rust.
1210
//!
13-
//! Hyper provides both a [Client](client/index.html) and a
11+
//! hyper provides both a [Client](client/index.html) and a
1412
//! [Server](server/index.html).
1513
//!
1614
//! If just starting out, **check out the [Guides](https://hyper.rs/guides)

0 commit comments

Comments
 (0)