diff --git a/src/storage.rs b/src/storage.rs index ae6f1cb..0dceb3b 100644 --- a/src/storage.rs +++ b/src/storage.rs @@ -116,7 +116,6 @@ where #[async_trait] pub trait TokenStorage: Send + Sync { /// Store a token for the given set of scopes so that it can be retrieved later by get() - /// ScopeSet implements Hash so that you can easily serialize and store it. /// TokenInfo can be serialized with serde. async fn set(&self, scopes: &[&str], token: TokenInfo) -> anyhow::Result<()>;