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

Unified Diff: pkg/testing/lib/src/test_dart/path.dart

Issue 2957593002: Spelling fixes e to i. (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 | « pkg/kernel/lib/transformations/treeshaker.dart ('k') | pkg/typed_mock/lib/typed_mock.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/testing/lib/src/test_dart/path.dart
diff --git a/pkg/testing/lib/src/test_dart/path.dart b/pkg/testing/lib/src/test_dart/path.dart
index b595e0b7367faf113c4ab9b6d95abf2b411bb82e..5d22c0e0420f3400700cafb9610b87e08956e1f0 100644
--- a/pkg/testing/lib/src/test_dart/path.dart
+++ b/pkg/testing/lib/src/test_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';
}
« no previous file with comments | « pkg/kernel/lib/transformations/treeshaker.dart ('k') | pkg/typed_mock/lib/typed_mock.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698