Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(420)

Unified Diff: sdk/lib/isolate/isolate.dart

Issue 2946283002: Fix a couple of doc comment references - and many spelling mistakes (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/io/websocket.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/isolate.dart
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
index 2b82098cd190401abe9864d4a10af476b5bbd625..fd5a8d9696b3498dabadb3a8f461d97a74bb6dd0 100644
--- a/sdk/lib/isolate/isolate.dart
+++ b/sdk/lib/isolate/isolate.dart
@@ -207,7 +207,7 @@ class Isolate {
* as if by an initial call of `isolate.pause(isolate.pauseCapability)`.
* To resume the isolate, call `isolate.resume(isolate.pauseCapability)`.
*
- * If the [errorAreFatal], [onExit] and/or [onError] parameters are provided,
+ * If the [errorsAreFatal], [onExit] and/or [onError] parameters are provided,
* the isolate will act as if, respectively, [setErrorsFatal],
* [addOnExitListener] and [addErrorListener] were called with the
* corresponding parameter and was processed before the isolate starts
@@ -252,7 +252,7 @@ class Isolate {
* as if by an initial call of `isolate.pause(isolate.pauseCapability)`.
* To resume the isolate, call `isolate.resume(isolate.pauseCapability)`.
*
- * If the [errorAreFatal], [onExit] and/or [onError] parameters are provided,
+ * If the [errorsAreFatal], [onExit] and/or [onError] parameters are provided,
* the isolate will act as if, respectively, [setErrorsFatal],
* [addOnExitListener] and [addErrorListener] were called with the
* corresponding parameter and was processed before the isolate starts
@@ -416,7 +416,7 @@ class Isolate {
*
* If the same port has been passed via [addOnExitListener] more than once,
* only one call to `removeOnExitListener` is needed to stop it from receiving
- * exit messagees.
+ * exit messages.
*
* Closing the receive port that is associated with the [responsePort] does
* not stop the isolate from sending uncaught errors, they are just going to
@@ -533,7 +533,7 @@ class Isolate {
*
* If the same port has been passed via [addErrorListener] more than once,
* only one call to `removeErrorListener` is needed to stop it from receiving
- * unaught errors.
+ * uncaught errors.
*
* Uncaught errors message may still be sent by the isolate
* until this request is received and processed.
« no previous file with comments | « sdk/lib/io/websocket.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698