From 1d8554a6a456d66db3a3c8b39a5727c2a8f5d5d8 Mon Sep 17 00:00:00 2001 From: Chris Wagner Date: Fri, 11 Feb 2022 11:11:29 -0700 Subject: [PATCH] Update README.md Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 360b846..dd3b251 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ to this: CachedAsyncImage(url: logoURL) ``` -In addition to `AsyncImage` initializers, you have the possibilities to specify the cash you want to use (by default `URLCache.shared` is used), and to use `URLRequest` instead of `URL`: +In addition to `AsyncImage` initializers, you have the possibilities to specify the cache you want to use (by default `URLCache.shared` is used), and to use `URLRequest` instead of `URL`: ```swift CachedAsyncImage(urlRequest: logoURLRequest, urlCache: .imageCache) ```