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

Unified Diff: tools/testing/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 | « tools/dom/src/native_DOMImplementation.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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';
}
« no previous file with comments | « tools/dom/src/native_DOMImplementation.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698