[typescript/en] Typo fixed in 'backticks'

This commit is contained in:
Andrew Backes 2015-10-19 08:09:58 -05:00
parent 525b6106a5
commit 998e76c310

View File

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