aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2015-02-21 00:14:30 -0500
committerAndrew Gallant <jamslam@gmail.com>2015-02-21 00:14:30 -0500
commit78eb5351bc47581599ed48a84b7453851b6e2b7d (patch)
tree21d9ffc37b6803d4194e39c458d2951a75cb8a35 /README.md
parent265b260df0d610fe970d5ec7bf128e3b42391b98 (diff)
downloadbyteorder-78eb5351bc47581599ed48a84b7453851b6e2b7d.tar.gz
tweak
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 55855fe..967e50b 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,9 @@ extern crate byteorder;
use byteorder::{ReaderBytesExt, WriterBytesExt, BigEndian, LittleEndian};
```
+Or use the `ReadBytesExt`/`WriteBytesExt` traits if you're using the new
+`std::io` module.
+
For example:
```rust