From d44f63e0fe23f91010b969fa9a789c932bac6ec1 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 26 Jun 2021 18:33:11 +0200 Subject: [PATCH] Fixed typo on README Fixed misspelling of "crucially" on the README. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 3ff7db1a..fd139138 100644 --- a/README.rst +++ b/README.rst @@ -189,7 +189,7 @@ This means you now have two basic states: runs on the main thread's event loop, and all ``thread_sensitive`` synchronous code will run in a single shared sub-thread. -Cruicially, this means that in both cases there is a thread which is a shared +Crucially, this means that in both cases there is a thread which is a shared resource that all ``thread_sensitive`` code must run on, and there is a chance that this thread is currently blocked on its own ``AsyncToSync`` call. Thus, ``AsyncToSync`` needs to act as an executor for thread code while it's blocking.