From 01691085a25d33833fb877dde3334cfc87c76b27 Mon Sep 17 00:00:00 2001 From: Andrew Barba Date: Thu, 28 Sep 2023 19:49:52 -0400 Subject: [PATCH] Fix readme typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ab23049..8ccdf335 100644 --- a/README.md +++ b/README.md @@ -144,8 +144,8 @@ The Compute package provdes access to [Fastly's Cache API](https://developer.fas ```swift let data = try await Cache.getOrSet("my-page") { - let res = try await expensivePageRender() - return (res, .ttl(60)) + let res = try await expensivePageRender() + return (res, .ttl(60)) } try await res