about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuri Astrakhan <yuriastrakhan@gmail.com>2024-01-25 20:33:06 -0500
committerGitHub <noreply@github.com>2024-01-25 20:33:06 -0500
commit8cbff0b426b0f8821c6852545b8ed6aa74bfeffe (patch)
tree38ec7f1e9b225e33cd5a502afb9d6977fc2b21b5
parentf1dbc7b35ed70847237046a5a61af1ba88eae31d (diff)
downloadrust-8cbff0b426b0f8821c6852545b8ed6aa74bfeffe.tar.gz
rust-8cbff0b426b0f8821c6852545b8ed6aa74bfeffe.zip
Update library/core/src/iter/adapters/intersperse.rs
Co-authored-by: Josh Stone <cuviper@gmail.com>
-rw-r--r--library/core/src/iter/adapters/intersperse.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/iter/adapters/intersperse.rs b/library/core/src/iter/adapters/intersperse.rs
index aab3743a51a..f436fe02dca 100644
--- a/library/core/src/iter/adapters/intersperse.rs
+++ b/library/core/src/iter/adapters/intersperse.rs
@@ -1,5 +1,5 @@
-use core::fmt;
-use core::iter::{Fuse, FusedIterator};
+use crate::fmt;
+use crate::iter::{Fuse, FusedIterator};
 
 /// An iterator adapter that places a separator between all elements.
 ///