about summary refs log tree commit diff
diff options
context:
space:
mode:
authormitaa <mitaa.ceb@gmail.com>2015-12-15 01:55:14 +0100
committermitaa <mitaa.ceb@gmail.com>2015-12-15 01:55:14 +0100
commit6244314798f80ff81d522c54ac8410268af401e4 (patch)
tree2abdb81ac4c597dc8905e4e80ec9f94f22c906dc
parentf150c178ea8275fab158bc7fe2a3b5af9ab8f3fe (diff)
downloadrust-6244314798f80ff81d522c54ac8410268af401e4.tar.gz
rust-6244314798f80ff81d522c54ac8410268af401e4.zip
Remove emoji from docs
-rw-r--r--src/libcore/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index f063c6b0676..526c2e1c6b5 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -604,7 +604,7 @@ pub trait Iterator {
     /// iterators, returning a tuple where the first element comes from the
     /// first iterator, and the second element comes from the second iterator.
     ///
-    /// In other words, it zips two iterators together, into a single one. 🤐
+    /// In other words, it zips two iterators together, into a single one.
     ///
     /// When either iterator returns `None`, all further calls to `next()`
     /// will return `None`.