1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

docs: remove unnecessary code block annotations

This commit is contained in:
Rob Ede
2024-06-09 05:18:43 +01:00
parent 65c698cd7f
commit 3ae4ef2706
3 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@ use derive_more::{Display, From};
/// Session keys are stored as cookies, therefore they cannot be arbitrary long. Session keys are
/// required to be smaller than 4064 bytes.
///
/// ```rust
/// ```
/// use actix_session::storage::SessionKey;
///
/// let key: String = std::iter::repeat('a').take(4065).collect();