From e9facaef5ddf5d02a4f6b9fc0a5e889673863162 Mon Sep 17 00:00:00 2001 From: Daniel Rodgers-Pryor Date: Fri, 26 Mar 2021 20:48:06 +1100 Subject: [PATCH] Remove now irrelevant comment about ScopeSets --- src/storage.rs | 1 - 1 file changed, 1 deletion(-) 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<()>;