From 4b3b32e4180ff4b59652b1c43cfde176d8f8693a Mon Sep 17 00:00:00 2001 From: Kurt Ruppel Date: Fri, 31 Oct 2014 09:52:44 -0700 Subject: [PATCH] Fix typo in If/Else JSX doc. --- docs/tips/03-if-else-in-JSX.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tips/03-if-else-in-JSX.md b/docs/tips/03-if-else-in-JSX.md index 15e2e9384a1..33cb088dd65 100644 --- a/docs/tips/03-if-else-in-JSX.md +++ b/docs/tips/03-if-else-in-JSX.md @@ -24,7 +24,7 @@ This means that `if` statements don't fit in. Take this example:
Hello World!
// Is transformed to this JS: -React.createElement("dov", {id: if (condition) { 'msg' }}, "Hello World!"); +React.createElement("div", {id: if (condition) { 'msg' }}, "Hello World!"); ``` That's not valid JS. You probably want to make use of a ternary expression: