| Index: runtime/tests/vm/dart/random_walk_fuzzer.dart
|
| diff --git a/runtime/tests/vm/dart/random_walk_fuzzer.dart b/runtime/tests/vm/dart/random_walk_fuzzer.dart
|
| index 224fab9f86573ab5b188e63a9c9b0cf9b4c20499..b6c9c6216b4579c64b397c1937772f7f058d6e11 100644
|
| --- a/runtime/tests/vm/dart/random_walk_fuzzer.dart
|
| +++ b/runtime/tests/vm/dart/random_walk_fuzzer.dart
|
| @@ -33,7 +33,7 @@ void main(List<String> args) {
|
| seed = int.parse(args[0]);
|
| } else {
|
| // Dart's built-in random number generator doesn't provide access to the
|
| - // seed when it is choosen by the implementation. We need to be able to
|
| + // seed when it is chosen by the implementation. We need to be able to
|
| // report this seed to make runs of the fuzzer reproducible, so we create
|
| // the seed ourselves.
|
|
|
| @@ -176,8 +176,8 @@ void setupInterestingValues() {
|
| addInstance("𝄞"); // Surrogate pairs
|
| addInstance("𝄞"[0]); // Surrogate pairs
|
| addInstance("𝄞"[1]); // Surrogate pairs
|
| - addInstance("\u{0}"); // Non-printing charater
|
| - addInstance("\u{1}"); // Non-printing charater
|
| + addInstance("\u{0}"); // Non-printing character
|
| + addInstance("\u{1}"); // Non-printing character
|
| addInstance("f\u{0}oo"); // Internal NUL
|
| addInstance("blåbæ\u{0}rgrød"); // Internal NUL
|
| addInstance("Îñţérñåţîö\u{0}ñåļîžåţîờñ"); // Internal NUL
|
|
|