Skip to main content

Update README.md

ID
3ec92e3
date
2022-01-04 08:12:23+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
6e0d7fc
message
Update README.md
changed files
1 file, 1 addition, 1 deletion

Changed files

README.md (1387) → README.md (1419)

diff --git a/README.md b/README.md
index 224c1a8..c69bd1d 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ This is fine for certain classes of task, but if `perform()` is heavily I/O boun
 If I could run multiple instances of `perform()` concurrently, the overall process would complete much faster.
 Task 1 could start, make a network request, then task 2 could start while task 1 is waiting.
 
-I wrote [my recipe for concurrent processing][blog] in a blog post in 2019, but the code was a little cumbersome to use.
+I wrote [my recipe for concurrent processing][blog] in a blog post in 2019, which explains how it works – but the code was a little cumbersome to use.
 This repo is a tidied up (and tested!) version of that code.
 
 It allows me to write code like: