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

Unified Diff: runtime/bin/directory.dart

Issue 8502011: Rephrase some comments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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 | « no previous file | runtime/bin/input_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory.dart
diff --git a/runtime/bin/directory.dart b/runtime/bin/directory.dart
index d51033f48563c175ec76a8f4d60858ac206d8ae1..a99de599780586b247cd411dc007b0bf68f39933 100644
--- a/runtime/bin/directory.dart
+++ b/runtime/bin/directory.dart
@@ -45,22 +45,21 @@ interface Directory factory _Directory {
void set dirHandler(void dirHandler(String dir));
/**
- * Sets the file handler that is called for all files during listing
+ * Sets the handler that is called for all files during listing
* operations. The file handler is called with the full path of the
* file.
*/
void set fileHandler(void fileHandler(String file));
/**
- * Set the done handler that is called when a directory listing is
+ * Set the handler that is called when a directory listing is
* done. The handler is called with an indication of whether or not
* the listing operation completed.
*/
Bill Hesse 2011/11/08 09:35:39 Maybe we can leave the argument as a bool, if we a
void set doneHandler(void doneHandler(bool completed));
/**
- * Sets the error handler that is called on error listing
- * directories.
+ * Sets the handler that is called on error listing directories.
*/
void set errorHandler(void errorHandler(String error));
« no previous file with comments | « no previous file | runtime/bin/input_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698