Chromium Code Reviews| Index: README.md |
| diff --git a/README.md b/README.md |
| index e02d3b77168731b4ea71ca20fc24e51b6bfa3a0a..0e229ebe0f6c0eb1af6fad7ffe5c8b11db9c45eb 100644 |
| --- a/README.md |
| +++ b/README.md |
| @@ -11,7 +11,7 @@ for creating `SendPort`s and reacting to values sent to those ports. |
| ### Working with isolates and running functions in other isolates. |
| -The "isolaterunner.dart" sub-library introduces an `IsolateRunner` class |
| +The "isolate_runner.dart" sub-library introduces an `IsolateRunner` class |
|
Lasse Reichstein Nielsen
2015/03/24 10:35:38
Aw, man!
What is it with people and underscores? D
kevmoo
2015/03/24 13:21:19
We go with "_" because it's a valid in dart identi
|
| that gives easy access to the `Isolate` functionality, and also |
| gives a way to run new functions in the isolate repeatedly, instead of |
| just on the initial `spawn` call. |
| @@ -23,7 +23,7 @@ object registry, and give access to it accross different isolates. |
| ### Balancing load accross several isolates. |
| -The "loadbalancer.dart" sub-library can manage multiple `Runner` objects, |
| +The "load_balancer.dart" sub-library can manage multiple `Runner` objects, |
| including `IsolateRunner`, and run functions on the currently least loaded |
| runner. |