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

Unified Diff: runtime/bin/input_stream.dart

Issue 9155007: Fix a few nits in comments in input_stream.dart (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/input_stream.dart
===================================================================
--- runtime/bin/input_stream.dart (revision 3128)
+++ runtime/bin/input_stream.dart (working copy)
@@ -120,9 +120,8 @@
/**
* Reads the next line from the stream. The line ending characters
- * will not be part og the returned string. If a full line is not
- * available null will be returned. The line break character(s) are
- * discarded.
+ * will not be part of the returned string. If a full line is not
+ * available null will be returned.
*/
String readLine();
@@ -139,14 +138,14 @@
/**
* Sets the handler that gets called when data is available. The two
- * handlers [dataHandler} and [lineHandler] are mutually exclusive
+ * handlers [dataHandler] and [lineHandler] are mutually exclusive
* and setting one will remove the other.
*/
void set dataHandler(void callback());
/**
* Sets the handler that gets called when a line is available. The
- * two handlers [dataHandler} and [lineHandler] are mutually
+ * two handlers [dataHandler] and [lineHandler] are mutually
* exclusive and setting one will remove the other.
*/
void set lineHandler(void callback());
« 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