summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--typescript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown
index 61b0fdb8..17c56e7a 100644
--- a/typescript.html.markdown
+++ b/typescript.html.markdown
@@ -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?`