diff --git a/docs/tips/04-self-closing-tag.md b/docs/tips/04-self-closing-tag.md
index 77688f4e6e..7c0a72fa8e 100644
--- a/docs/tips/04-self-closing-tag.md
+++ b/docs/tips/04-self-closing-tag.md
@@ -7,7 +7,7 @@ prev: if-else-in-JSX.html
next: maximum-number-of-jsx-root-nodes.html
---
-In JSX, `` alone is valid while `` isn't.
+In JSX, `` alone is valid while `` isn't. All tags must be closed, either with the self-closing format or with a corresponding closing tag (``).
> Note:
>