diff --git a/docs/jsx-gotchas.html b/docs/jsx-gotchas.html index e93b4647cc..cf461bee88 100644 --- a/docs/jsx-gotchas.html +++ b/docs/jsx-gotchas.html @@ -419,7 +419,7 @@
// Bad: It displays "First · Second"
<div>{'First · Second'}</div>
There are various ways to work-around this issue. The easiest one is to write unicode character directly in Javascript. You need to make sure that the file is saved as UTF-8 and that the proper UTF-8 directives are set so the browser will display it correctly.
+There are various ways to work-around this issue. The easiest one is to write unicode character directly in JavaScript. You need to make sure that the file is saved as UTF-8 and that the proper UTF-8 directives are set so the browser will display it correctly.
<div>{'First ยท Second'}</div>
A safer alternative is to find the unicode number corresponding to the entity and use it inside of a JavaScript string.