Skip to content

Commit 6f18be3

Browse files
committed
Clean up
1 parent a654eca commit 6f18be3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/language/isolates.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ but here are some more situations where they can be useful:
4141

4242
Also note a caveat due to a limit to the number of concurrently running isolates:
4343

44-
- The limit is not hardcoded to a particular number, it is calculated based on the Dart VM heap size available to the Dart application, can be considered to between 8 and 32 depending on the platform.
45-
- This limit doesn't affect asynchronous communction between isolates via messages - you can have hundreds of isolates running and making progress. The isolates are scheduled on CPU in round-robin fashion and yield to each other isolate often.
46-
- Attempts to do *synchronous* communication between isolates over the limit though will result in a deadlock.
44+
- The limit is not hardcoded to a particular number, it is calculated based on the Dart VM heap size available to the Dart application, can be considered to be between 8 and 32 depending on the platform.
45+
- This limit doesn't affect asynchronous communction between isolates via messages - you can have hundreds of isolates running and making progress. The isolates are scheduled on the CPU in round-robin fashion and yield to each other often.
46+
- Attempts to do *synchronous* communication between isolates over the limit though may result in a deadlock.
4747

4848
[Flutter]: {{site.flutter-docs}}/perf/isolates
4949

0 commit comments

Comments
 (0)