From 71454365f23e717cf686bdf75bb4c8cb671da8ba Mon Sep 17 00:00:00 2001 From: Leon Yip Date: Sat, 22 Aug 2015 00:57:51 -0700 Subject: [PATCH] Update 02.3-jsx-gotchas.md Fix typo. --- docs/docs/02.3-jsx-gotchas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/02.3-jsx-gotchas.md b/docs/docs/02.3-jsx-gotchas.md index 17f3b31748..88a16d74c0 100644 --- a/docs/docs/02.3-jsx-gotchas.md +++ b/docs/docs/02.3-jsx-gotchas.md @@ -27,7 +27,7 @@ If you want to display an HTML entity within dynamic content, you will run into
{'First · Second'}
``` -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 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. ```javascript
{'First ยท Second'}