about summary refs log tree commit diff
path: root/src/libcore/io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/io.rs')
-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