From 6244314798f80ff81d522c54ac8410268af401e4 Mon Sep 17 00:00:00 2001 From: mitaa Date: Tue, 15 Dec 2015 01:55:14 +0100 Subject: [PATCH] Remove emoji from docs --- src/libcore/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.