From aa9abe5fde74c00eb52df63f653f0d99b6317ff8 Mon Sep 17 00:00:00 2001 From: DQNEO Date: Wed, 18 Jan 2017 03:00:11 +0900 Subject: [PATCH] use an easier word (#8809) * use an easier word The word `mandatory` is relatively difficult for people with ESL (English as a second language), so I propose an alternative word. This would be much easier to understand. * use simpler word --- docs/introducing-jsx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introducing-jsx.md b/docs/introducing-jsx.md index 9b313bad2..505cdeb1b 100644 --- a/docs/introducing-jsx.md +++ b/docs/introducing-jsx.md @@ -48,7 +48,7 @@ ReactDOM.render( [Try it on CodePen.](http://codepen.io/gaearon/pen/PGEjdG?editors=0010) -We split JSX over multiple lines for readability. While it isn't mandatory, when doing this, we also recommend wrapping it in parentheses to avoid the pitfalls of [automatic semicolon insertion](http://stackoverflow.com/q/2846283). +We split JSX over multiple lines for readability. While it isn't required, when doing this, we also recommend wrapping it in parentheses to avoid the pitfalls of [automatic semicolon insertion](http://stackoverflow.com/q/2846283). ### JSX is an Expression Too