From 171160effe7a89fa8536bab9f752010b57892c96 Mon Sep 17 00:00:00 2001 From: lexika979 <83946527+lexika979@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:59:39 +0200 Subject: [PATCH] Fix typo (#92) --- src/async/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/async/README.md b/src/async/README.md index 84b20d7..1520d1a 100644 --- a/src/async/README.md +++ b/src/async/README.md @@ -1,6 +1,6 @@ # Working with `async` -So far we’ve only been working with synchronous users interfaces: You provide some input, +So far we’ve only been working with synchronous user interfaces: You provide some input, the app immediately processes it and updates the interface. This is great, but is a tiny subset of what web applications do. In particular, most web apps have to deal with some kind of asynchronous data loading, usually loading something from an API.