From 54aa8f1b3580d397b4ba77faa806e75e77705cb1 Mon Sep 17 00:00:00 2001 From: Giuseppe Burtini Date: Mon, 29 Aug 2016 08:16:34 -0700 Subject: [PATCH] [guide] Fix no-interpolation template string example The example showed a template string being used with no interpolation as "good". While it met the rule being described, it violated another rule for no reason. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95dc926d..6c3db4c0 100644 --- a/README.md +++ b/README.md @@ -565,7 +565,7 @@ Other Style Guides // good const foo = '\'this\' is "quoted"'; - const foo = `'this' is "quoted"`; + const foo = `my name is '${name}'`; ``` **[⬆ back to top](#table-of-contents)**