aboutsummaryrefslogtreecommitdiff
path: root/src/stream/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream/mod.rs')
-rw-r--r--src/stream/mod.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/stream/mod.rs b/src/stream/mod.rs
index 803e9a8..b1f3d07 100644
--- a/src/stream/mod.rs
+++ b/src/stream/mod.rs
@@ -53,7 +53,7 @@ pub mod buf_reader;
/// Stream wrapper which provides a `ResetStream` impl for `StreamOnce` impls which do not have
/// one.
#[cfg(feature = "alloc")]
-#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
+#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
pub mod buffered;
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
@@ -1401,7 +1401,7 @@ where
/// },
/// |input, _position| combine::easy::Stream::from(input),
/// ).map_err(combine::easy::Errors::<u8, &[u8], _>::from),
-/// Ok(819),
+/// Ok(824),
/// );
/// ```
#[cfg(feature = "std")]
@@ -1497,7 +1497,7 @@ macro_rules! decode {
/// },
/// |input, _position| combine::easy::Stream::from(input),
/// ).map_err(combine::easy::Errors::<u8, &[u8], _>::from),
-/// Ok(819),
+/// Ok(824),
/// );
/// }
/// ```
@@ -1591,7 +1591,7 @@ macro_rules! decode_futures_03 {
/// },
/// |input, _position| combine::easy::Stream::from(input),
/// ).map_err(combine::easy::Errors::<u8, &[u8], _>::from),
-/// Ok(819),
+/// Ok(824),
/// );
/// }
/// ```
@@ -1687,7 +1687,7 @@ macro_rules! decode_tokio_02 {
/// },
/// |input, _position| combine::easy::Stream::from(input),
/// ).map_err(combine::easy::Errors::<u8, &[u8], _>::from),
-/// Ok(819),
+/// Ok(824),
/// );
/// }
/// ```
@@ -1783,7 +1783,7 @@ macro_rules! decode_tokio_03 {
/// },
/// |input, _position| combine::easy::Stream::from(input),
/// ).map_err(combine::easy::Errors::<u8, &[u8], _>::from),
-/// Ok(819),
+/// Ok(824),
/// );
/// }
/// ```