summaryrefslogtreecommitdiffstats
path: root/tokio/src/io/util/lines.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/io/util/lines.rs')
-rw-r--r--tokio/src/io/util/lines.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/io/util/lines.rs b/tokio/src/io/util/lines.rs
index 0f1d946a..f0e75de4 100644
--- a/tokio/src/io/util/lines.rs
+++ b/tokio/src/io/util/lines.rs
@@ -91,7 +91,7 @@ where
}
#[cfg(feature = "stream")]
-impl<R: AsyncBufRead> futures_core::Stream for Lines<R> {
+impl<R: AsyncBufRead> crate::stream::Stream for Lines<R> {
type Item = io::Result<String>;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {