@@ -128,7 +128,7 @@ pub trait StreamExt: Stream {
128128 ///
129129 /// # Examples
130130 ///
131- /// ```
131+ /// ```ignore-wasm
132132 /// # #[tokio::main]
133133 /// # async fn main() {
134134 /// use tokio_stream::{self as stream, StreamExt};
@@ -170,7 +170,7 @@ pub trait StreamExt: Stream {
170170 ///
171171 /// # Examples
172172 ///
173- /// ```
173+ /// ```ignore-wasm
174174 /// # #[tokio::main]
175175 /// # async fn main() {
176176 /// use tokio_stream::{self as stream, StreamExt};
@@ -202,7 +202,7 @@ pub trait StreamExt: Stream {
202202 ///
203203 /// # Examples
204204 ///
205- /// ```
205+ /// ```ignore-wasm
206206 /// # #[tokio::main]
207207 /// # async fn main() {
208208 /// use tokio_stream::{self as stream, StreamExt};
@@ -238,7 +238,7 @@ pub trait StreamExt: Stream {
238238 ///
239239 /// # Examples
240240 ///
241- /// ```
241+ /// ```ignore-wasm
242242 /// # #[tokio::main]
243243 /// # async fn main() {
244244 /// use tokio_stream::{self as stream, StreamExt};
@@ -282,7 +282,7 @@ pub trait StreamExt: Stream {
282282 ///
283283 /// # Examples
284284 ///
285- /// ```
285+ /// ```ignore-wasm
286286 /// # #[tokio::main]
287287 /// # async fn main() {
288288 /// use tokio_stream::{self as stream, StreamExt};
@@ -417,7 +417,7 @@ pub trait StreamExt: Stream {
417417 ///
418418 /// # Examples
419419 ///
420- /// ```
420+ /// ```ignore-wasm
421421 /// # #[tokio::main]
422422 /// # async fn main() {
423423 /// use tokio_stream::{self as stream, StreamExt};
@@ -453,7 +453,7 @@ pub trait StreamExt: Stream {
453453 /// standard library.
454454 ///
455455 /// # Examples
456- /// ```
456+ /// ```ignore-wasm
457457 /// # #[tokio::main]
458458 /// # async fn main() {
459459 /// use tokio_stream::{self as stream, StreamExt};
@@ -487,7 +487,7 @@ pub trait StreamExt: Stream {
487487 ///
488488 /// # Examples
489489 ///
490- /// ```
490+ /// ```ignore-wasm
491491 /// use tokio_stream::{Stream, StreamExt};
492492 ///
493493 /// use std::pin::Pin;
@@ -550,7 +550,7 @@ pub trait StreamExt: Stream {
550550 ///
551551 /// # Examples
552552 ///
553- /// ```
553+ /// ```ignore-wasm
554554 /// # #[tokio::main]
555555 /// # async fn main() {
556556 /// use tokio_stream::{self as stream, StreamExt};
@@ -579,7 +579,7 @@ pub trait StreamExt: Stream {
579579 ///
580580 /// # Examples
581581 ///
582- /// ```
582+ /// ```ignore-wasm
583583 /// # #[tokio::main]
584584 /// # async fn main() {
585585 /// use tokio_stream::{self as stream, StreamExt};
@@ -605,7 +605,7 @@ pub trait StreamExt: Stream {
605605 ///
606606 /// # Examples
607607 ///
608- /// ```
608+ /// ```ignore-wasm
609609 /// # #[tokio::main]
610610 /// # async fn main() {
611611 /// use tokio_stream::{self as stream, StreamExt};
@@ -636,7 +636,7 @@ pub trait StreamExt: Stream {
636636 ///
637637 /// # Examples
638638 ///
639- /// ```
639+ /// ```ignore-wasm
640640 /// # #[tokio::main]
641641 /// # async fn main() {
642642 /// use tokio_stream::{self as stream, StreamExt};
@@ -679,7 +679,7 @@ pub trait StreamExt: Stream {
679679 ///
680680 /// Basic usage:
681681 ///
682- /// ```
682+ /// ```ignore-wasm
683683 /// # #[tokio::main]
684684 /// # async fn main() {
685685 /// use tokio_stream::{self as stream, StreamExt};
@@ -694,7 +694,7 @@ pub trait StreamExt: Stream {
694694 ///
695695 /// Stopping at the first `false`:
696696 ///
697- /// ```
697+ /// ```ignore-wasm
698698 /// # #[tokio::main]
699699 /// # async fn main() {
700700 /// use tokio_stream::{self as stream, StreamExt};
@@ -738,7 +738,7 @@ pub trait StreamExt: Stream {
738738 ///
739739 /// Basic usage:
740740 ///
741- /// ```
741+ /// ```ignore-wasm
742742 /// # #[tokio::main]
743743 /// # async fn main() {
744744 /// use tokio_stream::{self as stream, StreamExt};
@@ -753,7 +753,7 @@ pub trait StreamExt: Stream {
753753 ///
754754 /// Stopping at the first `true`:
755755 ///
756- /// ```
756+ /// ```ignore-wasm
757757 /// # #[tokio::main]
758758 /// # async fn main() {
759759 /// use tokio_stream::{self as stream, StreamExt};
@@ -784,7 +784,7 @@ pub trait StreamExt: Stream {
784784 ///
785785 /// # Examples
786786 ///
787- /// ```
787+ /// ```ignore-wasm
788788 /// use tokio_stream::{self as stream, StreamExt};
789789 ///
790790 /// #[tokio::main]
@@ -822,7 +822,7 @@ pub trait StreamExt: Stream {
822822 ///
823823 /// # Examples
824824 /// Basic usage:
825- /// ```
825+ /// ```ignore-wasm
826826 /// # #[tokio::main]
827827 /// # async fn main() {
828828 /// use tokio_stream::{self as stream, *};
@@ -871,7 +871,7 @@ pub trait StreamExt: Stream {
871871 ///
872872 /// Basic usage:
873873 ///
874- /// ```
874+ /// ```ignore-wasm
875875 /// use tokio_stream::{self as stream, StreamExt};
876876 ///
877877 /// #[tokio::main]
@@ -888,7 +888,7 @@ pub trait StreamExt: Stream {
888888 ///
889889 /// Collecting a stream of `Result` values
890890 ///
891- /// ```
891+ /// ```ignore-wasm
892892 /// use tokio_stream::{self as stream, StreamExt};
893893 ///
894894 /// #[tokio::main]
@@ -944,7 +944,7 @@ pub trait StreamExt: Stream {
944944 ///
945945 /// Suppose we have a stream `int_stream` that yields 3 numbers (1, 2, 3):
946946 ///
947- /// ```
947+ /// ```ignore-wasm
948948 /// # #[tokio::main]
949949 /// # async fn main() {
950950 /// use tokio_stream::{self as stream, StreamExt};
@@ -1030,7 +1030,7 @@ pub trait StreamExt: Stream {
10301030 ///
10311031 /// Suppose we have a stream `int_stream` that yields 3 numbers (1, 2, 3):
10321032 ///
1033- /// ```
1033+ /// ```ignore-wasm
10341034 /// # #[tokio::main]
10351035 /// # async fn main() {
10361036 /// use tokio_stream::{self as stream, StreamExt};
0 commit comments