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

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

Issue 11889039: Fix ClosureRule comment (Issue 7893) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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: pkg/serialization/lib/serialization.dart
diff --git a/pkg/serialization/lib/serialization.dart b/pkg/serialization/lib/serialization.dart
index d3e437b34fe6f88f19d32b0516d28c423765d055..72254766d337d734fbb172c22870a289272116cd 100644
--- a/pkg/serialization/lib/serialization.dart
+++ b/pkg/serialization/lib/serialization.dart
@@ -87,7 +87,7 @@
* addressToMap(a) => {"number" : a.number, "street" : a.street,
* "city" : a.city};
* createAddress(Map m) => new Address.create(m["number"], m["street"]);
- * fillInAddress(Map m, Address a) => a.city = m["city"];
+ * fillInAddress(Address a, Map m) => a.city = m["city"];
* var serialization = new Serialization()
* ..addRule(
* new ClosureRule(anAddress.runtimeType,
« 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