From 1589741a9008ec3745f4dfc4bc89e9ce57495dc9 Mon Sep 17 00:00:00 2001 From: Thomas Wirth Date: Fri, 4 Sep 2020 13:27:54 +0200 Subject: [PATCH] Fix Caching documentation. (#6247) --- docs/caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/caching.md b/docs/caching.md index 42cd471fa400..9cc7e9c8d652 100644 --- a/docs/caching.md +++ b/docs/caching.md @@ -12,7 +12,7 @@ server behaviour when ambiguous. .cache(Cache( directory = File(application.cacheDir, "http_cache"), // $0.05 worth of phone storage in 2020 - maxSize = 50L * 1024L * 1024L // 10 MiB + maxSize = 50L * 1024L * 1024L // 50 MiB )) .build() ```