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

Unified Diff: sdk/lib/io/directory.dart

Issue 43433002: dart:io | Directory.createTemp - fix missed rename of template to prefix. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/directory.dart
diff --git a/sdk/lib/io/directory.dart b/sdk/lib/io/directory.dart
index 95e6aa86ce831ecf844e290ee7093a3631faccb6..dcb2992213dad1da587f29f846ad77977763abf3 100644
--- a/sdk/lib/io/directory.dart
+++ b/sdk/lib/io/directory.dart
@@ -86,7 +86,7 @@ abstract class Directory implements FileSystemEntity {
* Returns a [:Future<Directory>:] that completes with the newly
* created temporary directory.
*/
- Future<Directory> createTemp([String template]);
+ Future<Directory> createTemp([String prefix]);
/**
* Synchronously creates a temporary directory in this directory.
@@ -96,7 +96,7 @@ abstract class Directory implements FileSystemEntity {
*
* Returns the newly created temporary directory.
*/
- Directory createTempSync([String template]);
+ Directory createTempSync([String prefix]);
Future<String> resolveSymbolicLinks();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698