diff --git a/guide/english/react/jsx/index.md b/guide/english/react/jsx/index.md
index 5b8965e498..cf1b544b07 100644
--- a/guide/english/react/jsx/index.md
+++ b/guide/english/react/jsx/index.md
@@ -49,15 +49,19 @@ function who() {
const greet =
Hello {who()}!
;
```
### Only a single parent tag is allowed
-A JSX expression must have only one parent tag. We can add multiple tags nested within the parent element only.
+A JSX expression must have only one parent element. We can have multiple elements nested within the parent element.
```jsx
// This is valid.
const tags = (
-
+
+
Hello World!
+
This is my special list:
+
+
);
// This is not valid.