about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-12-29 15:55:08 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-12-29 15:55:08 -0500
commit2493fbf5476ab9f5e5895fe15a4d739d96eb7bbc (patch)
tree49ecbd78d4587b1a2c6b6b3798c5c68664d27355
parent8e127ee626fb7b68749559c9030baf3db0096df9 (diff)
parent6244314798f80ff81d522c54ac8410268af401e4 (diff)
downloadrust-2493fbf5476ab9f5e5895fe15a4d739d96eb7bbc.tar.gz
rust-2493fbf5476ab9f5e5895fe15a4d739d96eb7bbc.zip
Rollup merge of #30390 - mitaa:patch-1, r=steveklabnik
None of my devices/browsers renders this correctly.

r? @steveklabnik
-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`.