From c89f5f0f3f312302b50e713b387b2ca59b49adaf Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Sun, 8 Jan 2023 00:57:22 -0700 Subject: [PATCH] client: Deletions may not "immediately" happen Aggressive caching may make the effect non-immediate. --- client/src/command/cache.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/command/cache.rs b/client/src/command/cache.rs index 62e0d86..afe7671 100644 --- a/client/src/command/cache.rs +++ b/client/src/command/cache.rs @@ -253,7 +253,7 @@ async fn destroy_cache(sub: Destroy) -> Result<()> { if !sub.no_confirm { eprintln!("When you destory a cache:"); eprintln!(); - eprintln!("1. Everyone will immediately lose access."); + eprintln!("1. Everyone will lose access."); eprintln!("2. The underlying data won't be deleted immediately."); eprintln!("3. You may not be able to create a cache of the same name."); eprintln!();