From d4ab34b1883b43688a29b2464c3b293d43884573 Mon Sep 17 00:00:00 2001 From: Luigy Leon Date: Sun, 22 Dec 2013 10:37:09 -0500 Subject: [PATCH] Fix "Dynamic Children" example --- docs/04-multiple-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/04-multiple-components.md b/docs/04-multiple-components.md index d44a039f..b69312af 100644 --- a/docs/04-multiple-components.md +++ b/docs/04-multiple-components.md @@ -124,7 +124,7 @@ The situation gets more complicated when the children are shuffled around (as in var results = this.props.results; return (
    - {this.results.map(function(result) { + {results.map(function(result) { return
  1. {result.text}
  2. ; })}