From 3b0bcaef82110eaa7eb94ab2df1ddc2bb419a70a Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 14 May 2018 02:10:34 +0000 Subject: [PATCH] Fix typo in crate docstring. (#29) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 5cdb686..8441132 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ //! 2. [Gread](trait.Gread.html), for reading data at an offset which automatically gets incremented by the size; //! 3. [IOread](trait.IOread.html), for reading _simple_ data out of a `std::io::Read` based interface, e.g., a stream. (**Note**: only available when compiled with `std`) //! -//! Each of these interfaces also have their corresponding writer versions as well, e.g., [Pwrite](trait.Pwrite.html), [Pwrite](trait.Pwrite.html), and [IOwrite](trait.IOwrite.html), respectively. +//! Each of these interfaces also have their corresponding writer versions as well, e.g., [Pwrite](trait.Pwrite.html), [Gwrite](trait.Gwrite.html), and [IOwrite](trait.IOwrite.html), respectively. //! //! Most familiar will likely be the `Pread` trait (inspired from the C function), which in our case takes an immutable reference to self, an immutable offset to read at, (and _optionally_ a parsing context, more on that later), and then returns the deserialized value. //!