Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc8c5b1

Browse files
committed
Merge pull request facebook#4688 from lyip1992/patch-7
Update 02.3-jsx-gotchas.md (cherry picked from commit cca1065)
1 parent 7263473 commit dc8c5b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/02.3-jsx-gotchas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you want to display an HTML entity within dynamic content, you will run into
2727
<div>{'First &middot; Second'}</div>
2828
```
2929

30-
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.
30+
There are various ways to work-around this issue. The easiest one is to write unicode characters 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.
3131

3232
```javascript
3333
<div>{'First · Second'}</div>

0 commit comments

Comments
 (0)