about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-05-19 20:39:02 -0600
committerSteve Klabnik <steve@steveklabnik.com>2013-05-19 20:39:02 -0600
commit91d3e7f1a0757bf314ab3a4c4be8f910e2355d35 (patch)
treecfcc77ef868ced5fe1fc62b1ee2ab41e75253a81
parentb1e805694b914613ec30619764bec961e78bbbac (diff)
downloadrust-91d3e7f1a0757bf314ab3a4c4be8f910e2355d35.tar.gz
rust-91d3e7f1a0757bf314ab3a4c4be8f910e2355d35.zip
Fix wording per feedback
Thanks @catamorphism!
-rw-r--r--src/libcore/io.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/io.rs b/src/libcore/io.rs
index d23f2fa7e2c..ffb49177b64 100644
--- a/src/libcore/io.rs
+++ b/src/libcore/io.rs
@@ -16,13 +16,13 @@ A quick summary:
 
 ## `Reader` and `Writer` traits
 
-These traits define the simplest amount of methods that anything that can do
+These traits define the minimal set of methods that anything that can do
 input and output should implement.
 
 ## `ReaderUtil` and `WriterUtil` traits
 
 Richer methods that allow you to do more. `Reader` only lets you read a certain
-amount of bytes into a buffer, while `ReaderUtil` allows you to read a whole
+number of bytes into a buffer, while `ReaderUtil` allows you to read a whole
 line, for example.
 
 Generally, these richer methods are probably the ones you want to actually