From fcc51bc523ec15138d74103fe3b0742b9e8a7ade Mon Sep 17 00:00:00 2001 From: Trinh Hoang Nhu Date: Wed, 30 Sep 2015 03:48:51 -0500 Subject: [PATCH] Add missing comma (,) between propTypes and render Add missing comma (,) between `propTypes` and `render` (cherry picked from commit 3c56146a442f1f9226a4f3389168f8fe5b19ec55) --- docs/docs/10.6-create-fragment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/10.6-create-fragment.md b/docs/docs/10.6-create-fragment.md index 28f932cd79..92c5218cac 100644 --- a/docs/docs/10.6-create-fragment.md +++ b/docs/docs/10.6-create-fragment.md @@ -18,7 +18,7 @@ var Swapper = React.createClass({ rightChildren: React.PropTypes.node, swapped: React.PropTypes.bool - } + }, render: function() { var children; if (this.props.swapped) {