Update library/core/src/iter/adapters/intersperse.rs

Co-authored-by: Josh Stone <cuviper@gmail.com>
This commit is contained in:
Yuri Astrakhan 2024-01-25 20:33:06 -05:00 committed by GitHub
parent f1dbc7b35e
commit 8cbff0b426
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.
///