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

Unified Diff: runtime/bin/file.dart

Issue 9474004: Make FileInputStream and FileOutputStream actually asynchronous. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove accidental edit Created 8 years, 10 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
Index: runtime/bin/file.dart
diff --git a/runtime/bin/file.dart b/runtime/bin/file.dart
index ee480b9bbe0ccc7817fa9a1b1d680449a9bb83fd..492617d2278f9c005909bcb40aafdd2427c56741 100644
--- a/runtime/bin/file.dart
+++ b/runtime/bin/file.dart
@@ -188,7 +188,7 @@ interface File default _File {
List<int> readAsBytesSync();
/**
- * Read the entire file contents as text using the give [encoding]
+ * Read the entire file contents as text using the given [encoding]
* ('UTF-8', 'ISO-8859-1', 'ASCII'). By default the encoding is
* 'UTF-8'.
*
@@ -200,7 +200,7 @@ interface File default _File {
/**
* Synchronously read the entire file contents as text using the
- * give [encoding] ('UTF-8', 'ISO-8859-1', 'ASCII'). By default the
+ * given [encoding] ('UTF-8', 'ISO-8859-1', 'ASCII'). By default the
* encoding is 'UTF-8'.
*/
String readAsTextSync([String encoding]);
@@ -218,7 +218,7 @@ interface File default _File {
/**
* Synchronously read the entire file contents as lines of text
- * using the give [encoding] ('UTF-8', 'ISO-8859-1', 'ASCII'). By
+ * using the given [encoding] ('UTF-8', 'ISO-8859-1', 'ASCII'). By
* default the encoding is 'UTF-8'.
*/
List<String> readAsLinesSync([String encoding]);

Powered by Google App Engine
This is Rietveld 408576698