diff options
author | Pratik Karki <predatoramigo@gmail.com> | 2018-03-02 14:39:55 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-02 14:39:55 +0545 |
commit | 631d1c1b475e0a007359776356bd9ed884ff7073 (patch) | |
tree | 1e9f3dee792ffb6f9f66f12135a5fc7433d07b10 | |
parent | 9f33f260dc305a40b6476c081ea16e75ac2ced50 (diff) | |
parent | 4d49a48d6cb23304112ce0de47689250ada225be (diff) |
Merge pull request #3072 from Imlisten/patch-1
[typescript/zh-cn] fix reference (#3040)
-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" /> // 模板字符串(使用反引号的字符串) // 嵌入变量的模板字符串 |