diff options
author | Huiz <1057354161@qq.com> | 2018-02-28 22:57:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 22:57:32 +0800 |
commit | 4d49a48d6cb23304112ce0de47689250ada225be (patch) | |
tree | 1e9f3dee792ffb6f9f66f12135a5fc7433d07b10 /zh-cn | |
parent | 9f33f260dc305a40b6476c081ea16e75ac2ced50 (diff) |
[typescript/zh-cn] fix reference (#3040)
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/typescript-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/typescript-cn.html.markdown b/zh-cn/typescript-cn.html.markdown index 2651b1cb..032f89e4 100644 --- a/zh-cn/typescript-cn.html.markdown +++ b/zh-cn/typescript-cn.html.markdown @@ -153,7 +153,7 @@ var pairToTuple = function<T>(p: Pair<T>) { var tuple = pairToTuple({ item1:"hello", item2:"world"}); // 引用定义文件 -// <reference path="jquery.d.ts" /> +/// <reference path="jquery.d.ts" /> // 模板字符串(使用反引号的字符串) // 嵌入变量的模板字符串 |