From 902a15d14909df41f9807b8cf0bee479cea7a58b Mon Sep 17 00:00:00 2001 From: inkinworld Date: Fri, 10 Jun 2016 13:52:10 -0500 Subject: [PATCH] Update 12-context.md (#6973) Modify a clerical error (cherry picked from commit 665633a1b7d30c434479f56f3e74ec5e08e5c876) --- docs/docs/12-context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/12-context.md b/docs/docs/12-context.md index 92145d1d0f..cab78f523b 100644 --- a/docs/docs/12-context.md +++ b/docs/docs/12-context.md @@ -50,7 +50,7 @@ class MessageList extends React.Component { const children = this.props.messages.map((message) => ); - return
{this.props.children}
; + return
{children}
; } } ```