about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorEsption <esption@gmail.com>2015-07-08 05:29:03 -0500
committerEsption <esption@gmail.com>2015-07-08 05:29:03 -0500
commit492f33a267d6d99d573b9e0558c25be6e1d03416 (patch)
tree8be6236528a86dcc817cb3771223c1c8ec0ea932 /src/libstd
parente6a9be10bc1b178dc0b23c505fc8f17e925cabb2 (diff)
downloadrust-492f33a267d6d99d573b9e0558c25be6e1d03416.tar.gz
rust-492f33a267d6d99d573b9e0558c25be6e1d03416.zip
Fixed some occurrences of 'if' being spelled 'iff'
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/net/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/net/parser.rs b/src/libstd/net/parser.rs
index b0fadb56f36..13bfaf0eb6c 100644
--- a/src/libstd/net/parser.rs
+++ b/src/libstd/net/parser.rs
@@ -104,7 +104,7 @@ impl<'a> Parser<'a> {
         }
     }
 
-    // Return char and advance iff next char is equal to requested
+    // Return char and advance if next char is equal to requested
     fn read_given_char(&mut self, c: char) -> Option<char> {
         self.read_atomically(|p| {
             match p.read_char() {