summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2018-11-28 11:55:31 -0800
committerToby Lawrence <tobz@users.noreply.github.com>2018-11-28 14:55:31 -0500
commitb3e57b60d069efe09ed5ed5dc6b2f792d9f683f0 (patch)
treeabb52aae64e53c9665d22300512a09f05acc8e2b /examples
parent1cd0ebfc5e46d915c7571327e0bd64568a93d373 (diff)
examples: remove reference to tokio-core (#780)
Diffstat (limited to 'examples')
-rw-r--r--examples/tinyhttp.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tinyhttp.rs b/examples/tinyhttp.rs
index 7a80d730..4cbefcc9 100644
--- a/examples/tinyhttp.rs
+++ b/examples/tinyhttp.rs
@@ -1,9 +1,9 @@
-//! A "tiny" example of HTTP request/response handling using just tokio-core
+//! A "tiny" example of HTTP request/response handling using transports.
//!
//! This example is intended for *learning purposes* to see how various pieces
//! hook up together and how HTTP can get up and running. Note that this example
//! is written with the restriction that it *can't* use any "big" library other
-//! than tokio-core, if you'd like a "real world" HTTP library you likely want a
+//! than Tokio, if you'd like a "real world" HTTP library you likely want a
//! crate like Hyper.
//!
//! Code here is based on the `echo-threads` example and implements two paths,