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

Unified Diff: lib/json/json.dart

Issue 10664015: Fix comments in json.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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: lib/json/json.dart
diff --git a/lib/json/json.dart b/lib/json/json.dart
index 8989a0a68b8b28ff31b6a6b78b20cf9633a2828e..104dd4a55407d2a7784580279d4661881f4263cf 100644
--- a/lib/json/json.dart
+++ b/lib/json/json.dart
@@ -11,15 +11,15 @@
*/
class JSON {
/**
- * Parses [:json:] and build the corresponding object.
+ * Parses [json] and build the corresponding object.
*/
static parse(String json) {
return _JsonParser.parse(json);
}
/**
- * Checks validity of JSON source in [:str:] and returns its text
- * length. Returns 0 if [:str:] does not begin with a valid JSON
+ * Checks validity of JSON source in [str] and returns its text
+ * length. Returns 0 if [str] does not begin with a valid JSON
* object.
*/
static int length(String str) {
@@ -27,14 +27,14 @@ class JSON {
}
/**
- * Serializes [:object:] into JSON string.
+ * Serializes [object] into JSON string.
*/
static String stringify(Object object) {
return JsonStringifier.stringify(object);
}
/**
- * Serializes [:object:] into [:output:] stream.
+ * Serializes [object] into [output] stream.
*/
static void printOn(Object object, StringBuffer output) {
return JsonStringifier.printOn(object, output);
« 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