diff --git a/content/docs/conditional-rendering.md b/content/docs/conditional-rendering.md index 10f09c67f..ec3725411 100644 --- a/content/docs/conditional-rendering.md +++ b/content/docs/conditional-rendering.md @@ -122,7 +122,7 @@ While declaring a variable and using an `if` statement is a fine way to conditio ### Inline If with Logical && Operator {#inline-if-with-logical--operator} -You may [embed any expressions in JSX](/docs/introducing-jsx.html#embedding-expressions-in-jsx) by wrapping them in curly braces. This includes the JavaScript logical `&&` operator. It can be handy for conditionally including an element: +You may [embed expressions in JSX](/docs/introducing-jsx.html#embedding-expressions-in-jsx) by wrapping them in curly braces. This includes the JavaScript logical `&&` operator. It can be handy for conditionally including an element: ```js{6-10} function Mailbox(props) {