Skip to content

Commit 4d790ed

Browse files
Document use of no-std-io2 (#517)
Closes #505
1 parent fbaf868 commit 4d790ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ assert_eq!(value.sub.b, 0x01 + 0x02)
230230
# `Read` supported
231231
Parsers can be created that directly read from a source implementing [Read](crate::no_std_io::Read).
232232
233-
The crate [no_std_io] is re-exported for use in `no_std` environments.
233+
The crate [no_std_io2](https://crates.io/crates/no-std-io2) is re-exported as [no_std_io] for use in `no_std` environments.
234234
This functions as an alias for [std::io](https://doc.rust-lang.org/stable/std/io/) when not
235235
using `no_std`.
236236
@@ -357,7 +357,7 @@ extern crate alloc;
357357
#[cfg(feature = "alloc")]
358358
use alloc::vec::Vec;
359359

360-
/// re-export of no_std_io
360+
/// re-export of [no_std_io2](https://crates.io/crates/no-std-io2)
361361
pub mod no_std_io {
362362
pub use no_std_io::io::Cursor;
363363
pub use no_std_io::io::Read;

0 commit comments

Comments
 (0)