Skip to content

Commit 27a1c42

Browse files
committed
added mising paren
1 parent 485b6ef commit 27a1c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/reference.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1733,7 +1733,7 @@ you create explicitly are also asynchronous. This allows each function to run i
17331733
other tasks, and to yield control to other tasks and all other HASS activities potentially anywhere
17341734
in the function. However, if two closely-spaced triggers occur (or different functions have the
17351735
same trigger), although the second trigger will begin running after the first, there is no guarantee
1736-
that the first task will have completed (or even executed any statements before the second task
1736+
that the first task will have completed (or even executed any statements) before the second task
17371737
start running. Both trigger functions will be running asynchronously, and the order of execution of
17381738
code among the tasks is not guaranteed. The same is true if you start two tasks using ``task.create()``
17391739
without any delay: the code in the tasks could run in any order relative to each other.

0 commit comments

Comments
 (0)