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

Unified Diff: utils/pub/utils.dart

Issue 11348288: Get archive creation working on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 1 month 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 | « utils/pub/io.dart ('k') | utils/tests/pub/pub.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/utils.dart
diff --git a/utils/pub/utils.dart b/utils/pub/utils.dart
index c688190094881bae2c48d2db4bdef5b4fb64f0fb..d9932b8796ef0e7c15d1ed1bfb57c93e8464426c 100644
--- a/utils/pub/utils.dart
+++ b/utils/pub/utils.dart
@@ -123,11 +123,11 @@ String sha1(String source) =>
CryptoUtils.bytesToHex(new SHA1().update(source.charCodes).digest());
/**
- * Returns a [Future] that completes in [milliSeconds].
+ * Returns a [Future] that completes in [milliseconds].
*/
-Future sleep(int milliSeconds) {
+Future sleep(int milliseconds) {
var completer = new Completer();
- new Timer(milliSeconds, completer.complete);
+ new Timer(milliseconds, completer.complete);
return completer.future;
}
« no previous file with comments | « utils/pub/io.dart ('k') | utils/tests/pub/pub.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698