| Index: tools/testing/dart/path.dart
|
| diff --git a/tools/testing/dart/path.dart b/tools/testing/dart/path.dart
|
| index 99da4397e442238be1e8e98da14b5dd5e4203fee..139dcfa5c7d4f1e51d352e6dfcf166d6b9e6e74f 100644
|
| --- a/tools/testing/dart/path.dart
|
| +++ b/tools/testing/dart/path.dart
|
| @@ -34,7 +34,7 @@ class Path {
|
| static String _cleanWindows(String source) {
|
| // Change \ to /.
|
| var clean = source.replaceAll('\\', '/');
|
| - // Add / before intial [Drive letter]:
|
| + // Add / before initial [Drive letter]:
|
| if (clean.length >= 2 && clean[1] == ':') {
|
| clean = '/$clean';
|
| }
|
|
|