diff --git a/src/use_cookie.rs b/src/use_cookie.rs index e810a57..5c32b58 100644 --- a/src/use_cookie.rs +++ b/src/use_cookie.rs @@ -37,8 +37,8 @@ use cookie::Cookie; /// This works equally well on the server or the client. /// On the server this function gets the cookie from the HTTP request header. /// -/// If you're using `axum` you have to enable the `"axum"` feature in your Cargo.toml. -/// In case it's `actix-web` enable the feature `"actix"`. +/// > If you're using `axum` you have to enable the `"axum"` feature in your Cargo.toml. +/// > In case it's `actix-web` enable the feature `"actix"`. pub fn use_cookie(cookie_name: &str) -> Option> { let cookies; #[cfg(feature = "ssr")]