diff --git a/meta/src/lib.rs b/meta/src/lib.rs index 6263f6405f..791d319da7 100644 --- a/meta/src/lib.rs +++ b/meta/src/lib.rs @@ -37,13 +37,12 @@ //! } //! ``` //! # Feature Flags -//! - `csr` Client-side rendering: Generate DOM nodes in the browser //! - `ssr` Server-side rendering: Generate an HTML string (typically on the server) //! - `hydrate` Hydration: use this to add interactivity to an SSRed Leptos app //! - `stable` By default, Leptos requires `nightly` Rust, which is what allows the ergonomics //! of calling signals as functions. Enable this feature to support `stable` Rust. //! -//! **Important Note:** You must enable one of `csr`, `hydrate`, or `ssr` to tell Leptos +//! **Important Note:** You must enable one of `hydrate`, or `ssr` to tell Leptos //! which mode your app is operating in. use futures::{Stream, StreamExt};