Update UsingAnEntity.md

This commit is contained in:
Mike Thompson 2018-02-13 10:54:06 +11:00 committed by GitHub
parent 5eed9d3fc2
commit 960aca36c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ Instead you should do this:
[:div "hello" (gstring/unescapeEntities " ") "there"]
```
Note that `unescapeEntities` relies on the DOM to produce a string with unescape entities;
in nodejs the DOM is unlikely to be available (unless you try using
**Note;** `unescapeEntities` relies on the DOM to produce a string with unescape entities;
in `nodejs` the DOM is unlikely to be available (unless you try using
[`jsdom`](https://www.npmjs.com/package/jsdom-global)).
***