about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-10-22 17:06:09 -0700
committerbors <bors@rust-lang.org>2013-10-22 17:06:09 -0700
commit22a5ebdc6b13089d2322d9944bdec1507d21eec2 (patch)
treec13edfe3060b6024436b7f7abbdc2d29bf25312a /src/libstd/rt
parenta7453ad0dffd94e57389b893527111c98a96ec40 (diff)
parentd83c5f7b1b5db74348c9d80a047364d10f2bc82d (diff)
downloadrust-22a5ebdc6b13089d2322d9944bdec1507d21eec2.tar.gz
rust-22a5ebdc6b13089d2322d9944bdec1507d21eec2.zip
auto merge of #10020 : mletterle/rust/documentation-fixes, r=thestinger
I'm planning on doing more updates, but the section in the tutorial stood out at me since the 'rust' tool no longer exists, this should probably be removed to lessen confusion.
Diffstat (limited to 'src/libstd/rt')
-rw-r--r--src/libstd/rt/io/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/rt/io/mod.rs b/src/libstd/rt/io/mod.rs
index c0971b5d3cd..f78a20dd111 100644
--- a/src/libstd/rt/io/mod.rs
+++ b/src/libstd/rt/io/mod.rs
@@ -12,8 +12,8 @@
 
 This module defines the Rust interface for synchronous I/O.
 It models byte-oriented input and output with the Reader and Writer traits.
-Types that implement both `Reader` and `Writer` and called 'streams',
-and automatically implement trait `Stream`.
+Types that implement both `Reader` and `Writer` are called 'streams',
+and automatically implement the `Stream` trait.
 Implementations are provided for common I/O streams like
 file, TCP, UDP, Unix domain sockets.
 Readers and Writers may be composed to add capabilities like string