summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-04-30 21:38:01 -0400
committerCorey Farwell <coreyf@rwell.org>2015-04-30 21:38:01 -0400
commit554da45762ff11def1d7ef85c68d4ed86550aa40 (patch)
treee215ed1f9636ebf415a60150f8c6dd39de363c18 /src/libstd/io
parent8a60e5667fa77c4a7a4e13bf7ab4ad6f1d033ca9 (diff)
downloadrust-554da45762ff11def1d7ef85c68d4ed86550aa40.tar.gz
rust-554da45762ff11def1d7ef85c68d4ed86550aa40.zip
Replaces instanced of 'an UTF' with 'a UTF'
Even spelled out, one would say 'a Universal Character Set'
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index 561c37ad950..9089b417fcb 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -236,7 +236,7 @@ pub trait Read {
 
     /// Transforms this `Read` instance to an `Iterator` over `char`s.
     ///
-    /// This adaptor will attempt to interpret this reader as an UTF-8 encoded
+    /// This adaptor will attempt to interpret this reader as a UTF-8 encoded
     /// sequence of characters. The returned iterator will return `None` once
     /// EOF is reached for this reader. Otherwise each element yielded will be a
     /// `Result<char, E>` where `E` may contain information about what I/O error