summaryrefslogtreecommitdiffstats
path: root/vendor/winnow/src/_topic/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/winnow/src/_topic/stream.rs')
-rw-r--r--vendor/winnow/src/_topic/stream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/winnow/src/_topic/stream.rs b/vendor/winnow/src/_topic/stream.rs
index 92841eda2..7455e185b 100644
--- a/vendor/winnow/src/_topic/stream.rs
+++ b/vendor/winnow/src/_topic/stream.rs
@@ -17,7 +17,7 @@
//!
//! ```rust
//! # use winnow::prelude::*;
-//! # use winnow::bytes::tag;
+//! # use winnow::token::tag;
//! # type MyStream<'i> = &'i str;
//! # type Output<'i> = &'i str;
//! fn parser(i: MyStream<'_>) -> IResult<MyStream<'_>, Output<'_>> {