summaryrefslogtreecommitdiffhomepage
path: root/typescript.html.markdown
diff options
context:
space:
mode:
authorAndrew Backes <backes.andrew@gmail.com>2015-10-19 08:09:58 -0500
committerAndrew Backes <backes.andrew@gmail.com>2015-10-19 08:09:58 -0500
commit998e76c310422e0946431b036eb7de03a9384e74 (patch)
treed75d9a45df281455d669efca77047f395acd428c /typescript.html.markdown
parent525b6106a57baa570734e29b43f861cd8cc5de3a (diff)
[typescript/en] Typo fixed in 'backticks'
Diffstat (limited to 'typescript.html.markdown')
-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?`