From 4a8b40321b935dca1b9c30e5140d340f75b0a366 Mon Sep 17 00:00:00 2001 From: Jack T Date: Fri, 7 Jan 2022 15:02:59 -0800 Subject: [PATCH] Update README.md Clarify delayed response condition --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3da8a16..79deeeb 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ URLSession.shared.dataTask(with: exampleURL) { (data, response, error) in ``` ##### Delayed responses -Sometimes you want to test if cancellation of requests is working. In that case, the mocked request should not finished directly and you need an delay. This can be added easily: +Sometimes you want to test if cancellation of requests is working. In that case, the mocked request should not finish immediately and you need an delay. This can be added easily: ```swift let exampleURL = URL(string: "https://www.wetransfer.com/api/endpoint")!