From aab190e916a3458967b654e2f969b1f5482f8026 Mon Sep 17 00:00:00 2001 From: Markus Rudolph Date: Wed, 7 Aug 2024 08:56:59 +0200 Subject: [PATCH] Update hugo/content/docs/recipes/utilities/caches.md Co-authored-by: Benjamin Friedman Wilson --- hugo/content/docs/recipes/utilities/caches.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo/content/docs/recipes/utilities/caches.md b/hugo/content/docs/recipes/utilities/caches.md index c4174dbe..cee71714 100644 --- a/hugo/content/docs/recipes/utilities/caches.md +++ b/hugo/content/docs/recipes/utilities/caches.md @@ -165,7 +165,7 @@ person Obelix ## Last words Caching can improve the performance of your language server. It is especially useful for computations that are expensive to calculate. The `DocumentCache` and `WorkspaceCache` are the most common caches to use. The `ContextCache` is useful if you need to store data for a specific context object. If you only need a key-value store, you can use the `SimpleCache`. -All of them are disposable compared to a simple `Map`. If you dispose them by calling `dispose()` the entries will be removed and the memory will be freed. +All of these caches are disposable compared to a simple `Map`. If you dispose them by calling `dispose()` the entries will be removed and the memory will be freed. ## Appendix