From c267114f069fb70e7bdb31107f552c94949ed797 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 22 Mar 2015 18:06:31 -0400 Subject: [PATCH] Correction to "Aggregation of resp." example --- docs/components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components.md b/docs/components.md index e23d00bd..3faaf0eb 100644 --- a/docs/components.md +++ b/docs/components.md @@ -329,7 +329,7 @@ var ContactsWidget = { view: function(ctrl) { return [ m.module(ContactForm, {onsave: ctrl.save}), - m.module(ContactList, {contacts: contacts}) + m.module(ContactList, {contacts: ctrl.contacts}) ] } }