Index: sdk/lib/json/json.dart |
diff --git a/sdk/lib/json/json.dart b/sdk/lib/json/json.dart |
index 4348767eea666865b422cd6e22b80c4042b1f1bc..fe31473b118defba8b78d782b5bb5f81ace1dcca 100644 |
--- a/sdk/lib/json/json.dart |
+++ b/sdk/lib/json/json.dart |
@@ -41,11 +41,12 @@ class JsonUnsupportedObjectError implements Error { |
* [List]s of parsed JSON values or [Map]s from [String] to parsed |
* JSON values. |
* |
- * The optional [revivier] function, if provided, is called once for each |
- * object or list property parsed. The arguments are the property name |
- * ([String]) or list index ([int]), and the value is the parsed value. |
- * The return value of the revivier will be used as the value of that property |
- * instead the parsed value. |
+ * The optional [revivier] function, if provided, is called once for each object |
Johnni Winther
2013/01/31 08:32:59
revivier -> reviver
sra1
2013/01/31 22:49:36
Done.
|
+ * or list property parsed. The arguments are the property name ([String]) or |
+ * list index ([int]), and the value is the parsed value. The return value of |
+ * the revivier will be used as the value of that property instead the parsed |
Johnni Winther
2013/01/31 08:32:59
ditto
sra1
2013/01/31 22:49:36
Done.
|
+ * value. The top level value is passed to the reviver with the empty string as |
+ * a key. |
* |
* Throws [FormatException] if the input is not valid JSON text. |
*/ |