[Docs] remove yet another wrapped-string "good" example

This commit is contained in:
Jordan Harband
2016-09-16 16:12:06 -07:00
parent 11b9adff01
commit a86d546c61

View File

@@ -878,8 +878,7 @@ Other Style Guides
// good
[1, 2, 3].map(number => (
`A long string with the ${number}. Its so long that weve broken it ` +
'over multiple lines!'
`A long string with the ${number}. Its so long that we dont want it to take up space on the .map line!`
));
// bad