diff options
author | Andrew Backes <backes.andrew@gmail.com> | 2015-10-19 10:40:57 -0500 |
---|---|---|
committer | Andrew Backes <backes.andrew@gmail.com> | 2015-10-19 10:40:57 -0500 |
commit | 5ca38bf934801c9e85e25e19842a6f84ebe6efa0 (patch) | |
tree | 8c10333cd56a1f90c81ee93a7ee7a20656aff79e /typescript.html.markdown | |
parent | 998e76c310422e0946431b036eb7de03a9384e74 (diff) |
[typescript/en] Fixing typo in 'Interpolation'
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 17c56e7a..20974304 100644 --- a/typescript.html.markdown +++ b/typescript.html.markdown @@ -160,7 +160,7 @@ var tuple = pairToTuple({ item1:"hello", item2:"world"}); /// <reference path="jquery.d.ts" /> // Template Strings (strings that use backticks) -// String Intepolation with Template Strings +// String Interpolation with Template Strings var name = 'Tyrone'; var greeting = `Hi ${name}, how are you?` // Multiline Strings with Template Strings |