From f130c0ffa26ae24f2e18bac33bc5cf7f62a2d938 Mon Sep 17 00:00:00 2001 From: Harrison Shoff Date: Wed, 4 Nov 2015 11:12:45 +0100 Subject: [PATCH] [6.5] add backticks around stray eval. fixes #556 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2639e441..5014f940 100644 --- a/README.md +++ b/README.md @@ -447,7 +447,7 @@ Other Style Guides return `How are you, ${name}?`; } ``` - - [6.5](#6.5) Never use eval() on a string, it opens too many vulnerabilities. + - [6.5](#6.5) Never use `eval()` on a string, it opens too many vulnerabilities. **[⬆ back to top](#table-of-contents)**