[typescript/en] Fixing typo in 'Interpolation'

This commit is contained in:
Andrew Backes 2015-10-19 10:40:57 -05:00
parent 998e76c310
commit 5ca38bf934

View File

@ -160,7 +160,7 @@ var tuple = pairToTuple({ item1:"hello", item2:"world"});
/// <reference path="jquery.d.ts" /> /// <reference path="jquery.d.ts" />
// Template Strings (strings that use backticks) // Template Strings (strings that use backticks)
// String Intepolation with Template Strings // String Interpolation with Template Strings
var name = 'Tyrone'; var name = 'Tyrone';
var greeting = `Hi ${name}, how are you?` var greeting = `Hi ${name}, how are you?`
// Multiline Strings with Template Strings // Multiline Strings with Template Strings