about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorEsption <esption@gmail.com>2015-07-08 21:17:13 -0500
committerEsption <esption@gmail.com>2015-07-08 21:17:13 -0500
commitdad8cd19d332e482e0c494600db5da596240f572 (patch)
tree33492458cae11f159d944c9220ab7fc67fcc2fdc /src/libstd
parent492f33a267d6d99d573b9e0558c25be6e1d03416 (diff)
downloadrust-dad8cd19d332e482e0c494600db5da596240f572.tar.gz
rust-dad8cd19d332e482e0c494600db5da596240f572.zip
'iff' for docs to 'if and only if'
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 13bfaf0eb6c..b0fadb56f36 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 if next char is equal to requested
+    // Return char and advance iff next char is equal to requested
     fn read_given_char(&mut self, c: char) -> Option<char> {
         self.read_atomically(|p| {
             match p.read_char() {