From cd1b77134e918251ed1fe5974df54e1cffcc4797 Mon Sep 17 00:00:00 2001 From: vgwidt <49006240+vgwidt@users.noreply.github.com> Date: Mon, 30 Dec 2024 01:54:31 +0900 Subject: [PATCH] docs: fix redis tls feature names (#487) Co-authored-by: Rob Ede --- actix-session/src/storage/redis_rs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-session/src/storage/redis_rs.rs b/actix-session/src/storage/redis_rs.rs index c88e7028c..747c3775f 100644 --- a/actix-session/src/storage/redis_rs.rs +++ b/actix-session/src/storage/redis_rs.rs @@ -44,7 +44,7 @@ use crate::storage::{ /// ``` /// /// # TLS support -/// Add the `redis-rs-tls-session` or `redis-rs-tls-session-rustls` feature flag to enable TLS support. You can then establish a TLS +/// Add the `redis-session-native-tls` or `redis-session-rustls` feature flag to enable TLS support. You can then establish a TLS /// connection to Redis using the `rediss://` URL scheme: /// /// ```no_run