Skip to content

Commit

Permalink
Docs: clarify rule details for no-template-curly-in-string (#6900)
Browse files Browse the repository at this point in the history
  • Loading branch information
not-an-aardvark authored and platinumazure committed Aug 15, 2016
1 parent b9b3446 commit 02a00d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-template-curly-in-string.md
Expand Up @@ -5,7 +5,7 @@ ECMAScript 6 allows programmers to create strings containing variable or express

## Rule Details

This rule aims to warn when a regular string contains what looks like a template literal placeholder. It will warn when it finds a string containing the template literal place holder (`${something}`) that uses either `\"` or `\'` for the quotes.
This rule aims to warn when a regular string contains what looks like a template literal placeholder. It will warn when it finds a string containing the template literal place holder (`${something}`) that uses either `"` or `'` for the quotes.

## Examples

Expand Down

0 comments on commit 02a00d6

Please sign in to comment.