summaryrefslogtreecommitdiffstats
path: root/examples/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/README.md')
-rw-r--r--examples/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/README.md b/examples/README.md
index 8215a6c8..688984b9 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -1,7 +1,7 @@
## Examples of `tokio-core`
This directory contains a number of examples showcasing various capabilities of
-the `tokio_core` crate. Most of these examples also leverage the `futures` and
+the `tokio` crate. Most of these examples also leverage the `futures` and
`tokio_io` crates, along with a number of other miscellaneous dependencies for
various tasks.
@@ -15,7 +15,7 @@ A high level description of each example is:
* `hello` - a tiny server that simply writes "Hello!" to all connected clients
and then terminates the connection, should help see how to create and
- initialize `tokio_core`.
+ initialize `tokio`.
* `echo` - this is your standard TCP "echo server" which simply accepts
connections and then echos back any contents that are read from each connected
client.