diff options
author | Andrew Backes <backes.andrew@gmail.com> | 2015-10-19 08:09:58 -0500 |
---|---|---|
committer | Andrew Backes <backes.andrew@gmail.com> | 2015-10-19 08:09:58 -0500 |
commit | 998e76c310422e0946431b036eb7de03a9384e74 (patch) | |
tree | d75d9a45df281455d669efca77047f395acd428c /typescript.html.markdown | |
parent | 525b6106a57baa570734e29b43f861cd8cc5de3a (diff) |
[typescript/en] Typo fixed in 'backticks'
Diffstat (limited to 'typescript.html.markdown')
-rw-r--r-- | typescript.html.markdown | 2 |
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?` |