summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lacroix <toto.rigolo@free.fr>2019-07-04 07:59:10 +0200
committerCarl Lerche <me@carllerche.com>2019-07-03 22:59:10 -0700
commit516251052d9b57f353666eab1ab360d362c1ef7e (patch)
tree32ac33d653ac2c0dbc07ab01931d17c075c57b1d
parentcbad83f36250dee743e9ccef0cf473fce3300d28 (diff)
Add missing links in README.md (#1233)
Fixes: #1229
-rw-r--r--README.md12
-rw-r--r--tokio-io/src/lib.rs2
-rw-r--r--tokio/Cargo.toml2
-rw-r--r--tokio/README.md10
-rw-r--r--tokio/src/lib.rs4
5 files changed, 16 insertions, 14 deletions
diff --git a/README.md b/README.md
index 35ca1c04..2eedbad8 100644
--- a/README.md
+++ b/README.md
@@ -29,8 +29,8 @@ the Rust programming language. It is:
[gitter-url]: https://gitter.im/tokio-rs/tokio
[Website](https://tokio.rs) |
-[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
-[API Docs](https://docs.rs/tokio/0.1.20/tokio) |
+[Guides](https://tokio.rs/docs/) |
+[API Docs](https://docs.rs/tokio/0.1.22/tokio) |
[Chat](https://gitter.im/tokio-rs/tokio)
The API docs for the master branch are published [here][master-dox].
@@ -51,9 +51,9 @@ level, it provides a few major components:
These components provide the runtime components necessary for building
an asynchronous application.
-[net]: https://docs.rs/tokio/0.1.20/tokio/net/index.html
-[reactor]: https://docs.rs/tokio/0.1.20/tokio/reactor/index.html
-[scheduler]: https://docs.rs/tokio/0.1.20/tokio/runtime/index.html
+[net]: https://docs.rs/tokio/0.1.22/tokio/net/index.html
+[reactor]: https://docs.rs/tokio/0.1.22/tokio/reactor/index.html
+[scheduler]: https://docs.rs/tokio/0.1.22/tokio/runtime/index.html
## Example
@@ -107,6 +107,8 @@ First, see if the answer to your question can be found in the [Guides] or the
the [Tokio Gitter channel][chat]. We would be happy to try to answer your
question. Last, if that doesn't work, try opening an [issue] with the question.
+[Guides]: https://tokio.rs/docs/
+[API documentation]: https://docs.rs/tokio/0.1.22/tokio
[chat]: https://gitter.im/tokio-rs/tokio
[issue]: https://github.com/tokio-rs/tokio/issues/new
diff --git a/tokio-io/src/lib.rs b/tokio-io/src/lib.rs
index cd097ae6..81a11f8f 100644
--- a/tokio-io/src/lib.rs
+++ b/tokio-io/src/lib.rs
@@ -9,7 +9,7 @@
//! A description of the high-level I/O combinators can be [found online] in
//! addition to a description of the [low level details].
//!
-//! [found online]: https://tokio.rs/docs/getting-started/core/
+//! [found online]: https://tokio.rs/docs/
//! [low level details]: https://tokio.rs/docs/going-deeper-tokio/core-low-level/
macro_rules! ready {
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index 2b68f70b..b45f48ce 100644
--- a/tokio/Cargo.toml
+++ b/tokio/Cargo.toml
@@ -13,7 +13,7 @@ edition = "2018"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.1.21/tokio/"
+documentation = "https://docs.rs/tokio/0.1.22/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
diff --git a/tokio/README.md b/tokio/README.md
index 76b53e8f..4e0b8d75 100644
--- a/tokio/README.md
+++ b/tokio/README.md
@@ -27,8 +27,8 @@ the Rust programming language. It is:
[gitter-url]: https://gitter.im/tokio-rs/tokio
[Website](https://tokio.rs) |
-[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
-[API Docs](https://docs.rs/tokio/0.1.21/tokio) |
+[Guides](https://tokio.rs/docs/) |
+[API Docs](https://docs.rs/tokio/0.1.22/tokio) |
[Chat](https://gitter.im/tokio-rs/tokio)
## Overview
@@ -45,9 +45,9 @@ level, it provides a few major components:
These components provide the runtime components necessary for building
an asynchronous application.
-[net]: https://docs.rs/tokio/0.1.21/tokio/net/index.html
-[reactor]: https://docs.rs/tokio/0.1.21/tokio/reactor/index.html
-[scheduler]: https://docs.rs/tokio/0.1.21/tokio/runtime/index.html
+[net]: https://docs.rs/tokio/0.1.22/tokio/net/index.html
+[reactor]: https://docs.rs/tokio/0.1.22/tokio/reactor/index.html
+[scheduler]: https://docs.rs/tokio/0.1.22/tokio/runtime/index.html
## Example
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index 943d840d..480b853c 100644
--- a/tokio/src/lib.rs
+++ b/tokio/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio/0.1.20")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.1.22")]
#![deny(missing_docs, missing_debug_implementations, rust_2018_idioms)]
#![cfg_attr(test, deny(warnings))]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
@@ -21,7 +21,7 @@
//!
//! Guide level documentation is found on the [website].
//!
-//! [website]: https://tokio.rs/docs/getting-started/hello-world/
+//! [website]: https://tokio.rs/docs/
//! [futures]: http://docs.rs/futures/0.1
//!
//! # Examples