1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

Add missing backtic in SessionMiddleware docs (#245)

This commit is contained in:
David Schmitt 2022-05-18 10:55:57 +01:00 committed by GitHub
parent 8fd1772d5e
commit d11a272384
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ use crate::{
/// To create a new instance of [`SessionMiddleware`] you need to provide:
///
/// - an instance of the session storage backend you wish to use (i.e. an implementation of
/// [`SessionStore]);
/// [`SessionStore`]);
/// - a secret key, to sign or encrypt the content of client-side session cookie.
///
/// ```no_run