Skip to content

Commit 7c98940

Browse files
committed
Fixed typo in Local docstring.
1 parent 4d233dd commit 7c98940

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

asgiref/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Local:
5959
If `thread_critical` is True, then the local will only be visible per-thread,
6060
behaving exactly like `threading.local` if the thread is sync, and as
6161
`contextvars` if the thread is async. This allows genuinely thread-sensitive
62-
code (such as DB handles) to be kept stricly to their initial thread and
62+
code (such as DB handles) to be kept strictly to their initial thread and
6363
disable the sharing across `sync_to_async` and `async_to_sync` wrapped calls.
6464
6565
Unlike plain `contextvars` objects, this utility is threadsafe.

0 commit comments

Comments
 (0)