Fix typos

Fixes #50184

Change-Id: If17f838d932171e30ef92d1bda8d4918e7e08a8f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/263622
Reviewed-by: Lasse Nielsen <lrn@google.com>
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
This commit is contained in:
Ahmed Ashour
2022-10-12 14:12:42 +00:00
committed by Commit Queue
parent aa7fb9e9e8
commit 10e7e478a2
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ The `Dart` suite makes certain assumptions about the tests it runs.
* An asynchronous test returns a `Future` from its `main`.
* Tests manages global state.
* Tests manage global state.
All tests are imported into the same program as individual libraries, which is why they all must use the same `.packages` file. The tests aren't concatenated, so they have the lexical scope you'd normally expect from a Dart library.
+1 -1
View File
@@ -342,7 +342,7 @@ abstract class Step<I, O, C extends ChainContext> {
/// the next step is executed by the now-ending step.
///
/// When isAsync is false each step returns a future which is awaited,
/// effectivly meaning that only a single test is run at a time.
/// effectively meaning that only a single test is run at a time.
///
/// When isAsync is true that step doesn't return a future (but adds it's
/// future to a list which is awaited before sending an 'entire suite done'
+1 -1
View File
@@ -98,7 +98,7 @@ class ExpectationSet {
break;
default:
throw "Unrecoginized key: '$key' in '$map'.";
throw "Unrecognized key: '$key' in '$map'.";
}
});
if (name == null) {