Add documentation links.

This commit is contained in:
Corey Farwell
2016-09-07 21:19:34 -04:00
parent 815dc803db
commit d7f76ca549
6 changed files with 18 additions and 6 deletions
+3 -1
View File
@@ -6,7 +6,9 @@ use futures::{Poll, Future};
/// A future which can be used to easily read exactly enough bytes to fill
/// a buffer.
///
/// Created by the `read_exact` function.
/// Created by the [`read_exact`] function.
///
/// [`read_exact`]: fn.read_exact.html
pub struct ReadExact<A, T> {
state: State<A, T>,
}