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

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

Issue 2655883002: fix spelling in core libraries (Closed)
Patch Set: while I’m at it… Created 3 years, 11 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 | « sdk/lib/io/platform_impl.dart ('k') | sdk/lib/isolate/isolate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/stdio.dart
diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
index 35560a9ff2d5d1759e0509b6e6677df0cf18ea12..2a878484efb45e6e96c246e1ec3d6a337335da51 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -51,7 +51,7 @@ class Stdin extends _StdStream implements Stream<List<int>> {
*
* If end-of-file is reached after any bytes have been read from stdin,
* that data is returned.
- * Returns `null` if no bytes preceeded the end of input.
+ * Returns `null` if no bytes preceded the end of input.
*/
String readLineSync({Encoding encoding: SYSTEM_ENCODING,
bool retainNewlines: false}) {
@@ -86,7 +86,7 @@ class Stdin extends _StdStream implements Stream<List<int>> {
line.add(byte);
}
} else {
- // Case having to hande CR LF as a single unretained line terminator.
+ // Case having to handel CR LF as a single unretained line terminator.
outer: while (true) {
int byte = readByteSync();
if (byte == LF) break;
« no previous file with comments | « sdk/lib/io/platform_impl.dart ('k') | sdk/lib/isolate/isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698