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

Unified Diff: pkg/serialization/lib/src/format.dart

Issue 14447008: Fix for mirror API breaking change to index libraries by URI, and clean up references in doc commen… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed a print statement, one unsaved fix. Created 7 years, 8 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
Index: pkg/serialization/lib/src/format.dart
diff --git a/pkg/serialization/lib/src/format.dart b/pkg/serialization/lib/src/format.dart
index 4e57384502097f09cc440881a4fc3057d4ffc40c..d42707d0672976f7803ebfa8febc2dbfaf87369a 100644
--- a/pkg/serialization/lib/src/format.dart
+++ b/pkg/serialization/lib/src/format.dart
@@ -82,7 +82,7 @@ class SimpleMapFormat extends Format {
* with nesting of those.
* Note that since the classes of objects aren't normally stored, this isn't
* enough information to read back the objects. However, if the
- * If the [storeRoundTripData] field of the format is set to true, then this
+ * If the [storeRoundTripInfo] field of the format is set to true, then this
* will store the rule number along with the data, allowing reconstruction.
*/
class SimpleJsonFormat extends Format {
@@ -195,7 +195,7 @@ class SimpleJsonFormat extends Format {
}
/**
- * Convert nested references in [data] into [Reference] objects.
+ * Convert nested references in [input] into [Reference] objects.
*/
recursivelyFixUp(input, Reader r, List result) {
var data = input;

Powered by Google App Engine
This is Rietveld 408576698