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

Unified Diff: sdk/lib/core/string_sink.dart

Issue 12303026: More comments to StringBuffers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Forgot to save file. Created 7 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
« sdk/lib/core/string_buffer.dart ('K') | « sdk/lib/core/string_buffer.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/string_sink.dart
diff --git a/sdk/lib/core/string_sink.dart b/sdk/lib/core/string_sink.dart
index c2eff2d79f069e0cd46c2b4e75875fb400e62bdc..f7eb8639aefb774ba3d90b6ec6bdd8caf166054d 100644
--- a/sdk/lib/core/string_sink.dart
+++ b/sdk/lib/core/string_sink.dart
@@ -8,7 +8,7 @@ abstract class StringSink {
/**
* Converts [obj] to a String by invoking [:toString:] and adds the result to
- * this [StringSink].
+ * [:this:].
sra1 2013/02/19 21:08:45 Consider using backtick, which is lighter on the e
Lasse Reichstein Nielsen 2013/02/20 09:30:43 Backtick is not part of the dartdoc spec (in the l
sra1 2013/02/21 02:05:15 The spec currently says (copy & paste from http://
floitsch 2013/02/21 13:49:03 Done.
*/
void write(Object obj);
@@ -19,12 +19,12 @@ abstract class StringSink {
/**
* Converts [obj] to a String by invoking [:toString:] and adds the result to
- * this [StringSink]. Then adds a new line.
+ * [:this:]. Then adds a new line.
*/
void writeln(Object obj);
/**
- * Writes the [charCode] to this [StringSink].
+ * Writes the [charCode] to [:this:].
*
* This method is equivalent to [:write(new String.fromCharCode(charCode)):].
*/
« sdk/lib/core/string_buffer.dart ('K') | « sdk/lib/core/string_buffer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698