[6.5] add backticks around stray eval. fixes #556

This commit is contained in:
Harrison Shoff
2015-11-04 11:12:45 +01:00
parent 88d5084009
commit f130c0ffa2

View File

@@ -447,7 +447,7 @@ Other Style Guides
return `How are you, ${name}?`;
}
```
- [6.5](#6.5) <a name='6.5'></a> Never use eval() on a string, it opens too many vulnerabilities.
- [6.5](#6.5) <a name='6.5'></a> Never use `eval()` on a string, it opens too many vulnerabilities.
**[⬆ back to top](#table-of-contents)**