From 6af66c4f214259906c1f80788e1ecfcaf0dfcfd1 Mon Sep 17 00:00:00 2001 From: Jack O'Connor <oconnor663@gmail.com> Date: Tue, 2 May 2017 15:35:06 -0400 Subject: [PATCH] fix a docs typo (#115) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index fcea800..fbe6572 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -62,7 +62,7 @@ //! ## Relation with `Read` and `Write` //! //! At first glance, it may seem that `Buf` and `BufMut` overlap in -//! functionality with `std::io::Ready` and `std::io::Write`. However, they +//! functionality with `std::io::Read` and `std::io::Write`. However, they //! serve different purposes. A buffer is the value that is provided as an //! argument to `Read::read` and `Write::write`. `Read` and `Write` may then //! perform a syscall, which has the potential of failing. Operations on `Buf` -- GitLab