about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMichael Letterle <michael.letterle@gmail.com>2013-10-21 21:23:00 -0400
committerMichael Letterle <michael.letterle@gmail.com>2013-10-22 14:30:27 -0400
commitd83c5f7b1b5db74348c9d80a047364d10f2bc82d (patch)
tree2b757bc7ccc243f797f35810cde3774f8f645bdd /src/libstd
parentfd2c0128a7dd3cb19eda253acd01cd7905d1c7dc (diff)
downloadrust-d83c5f7b1b5db74348c9d80a047364d10f2bc82d.tar.gz
rust-d83c5f7b1b5db74348c9d80a047364d10f2bc82d.zip
Minor grammatical fixes and removed section on 'rust' tool
Diffstat (limited to 'src/libstd')
-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