diff --git a/src/stream/extend.rs b/src/stream/extend.rs
index 5e39f198..0d26afab 100644
--- a/src/stream/extend.rs
+++ b/src/stream/extend.rs
@@ -65,6 +65,8 @@ pub trait Extend {
/// #
/// # })
/// ```
+#[cfg(feature = "unstable")]
+#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub async fn extend<'a, C, A, T>(collection: &mut C, stream: T)
where
C: Extend,