Skip to content

Commit 8612624

Browse files
authored
Merge pull request #184 from ccagml/main
更改错误答案上色默认选项
2 parents 8e9d404 + a10b4ba commit 8612624

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+122
-118
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## version 2.15.5
2+
3+
- 更改错误答案上色默认选项
4+
15
## version 2.15.4
26

37
- 模板错了

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<p align="center">
2-
<a href="https://github.com/ccagml/leetcode_ext/actions/workflows/release.yml">
2+
<a href="https://github.com/ccagml/leetcode_vsc/actions/workflows/release.yml">
33
<img src="https://img.shields.io/github/actions/workflow/status/ccagml/vscode-leetcode-problem-rating/release.yml?branch=release" alt="">
44
</a>
55
<a href="https://marketplace.visualstudio.com/items?itemName=ccagml.vscode-leetcode-problem-rating">
66
<img src="https://img.shields.io/visual-studio-marketplace/d/ccagml.vscode-leetcode-problem-rating.svg?style=flat-square" alt="">
77
</a>
8-
<a href="https://github.com/ccagml/leetcode_ext/blob/main/LICENSE">
8+
<a href="https://github.com/ccagml/leetcode_vsc/blob/main/LICENSE">
99
<img src="https://img.shields.io/github/license/ccagml/vscode-leetcode-problem-rating" alt="">
1010
</a>
1111
</p>
@@ -33,8 +33,8 @@
3333

3434
# 关于本项目
3535

36-
- [项目地址:https://github.com/ccagml/leetcode_ext/](https://github.com/ccagml/leetcode_ext/)
37-
- [报告问题](https://github.com/ccagml/leetcode_ext/issues)
36+
- [项目地址:https://github.com/ccagml/leetcode_vsc/](https://github.com/ccagml/leetcode_vsc/)
37+
- [报告问题](https://github.com/ccagml/leetcode_vsc/issues)
3838
- [疑难解答](https://github.com/LeetCode-OpenSource/vscode-leetcode/wiki/%E7%96%91%E9%9A%BE%E8%A7%A3%E7%AD%94)
3939
- [常见问题](https://github.com/LeetCode-OpenSource/vscode-leetcode/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)
4040
- 趁着现在只有<img src="https://img.shields.io/github/stars/ccagml/vscode-leetcode-problem-rating" alt="">提交一个 PR 就能成为项目元老了

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-leetcode-problem-rating",
33
"displayName": "LeetCode",
44
"description": "%main.description%",
5-
"version": "2.15.4",
5+
"version": "2.15.5",
66
"author": "ccagml",
77
"publisher": "ccagml",
88
"license": "MIT",
@@ -12,9 +12,9 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "https://github.com/ccagml/leetcode_ext"
15+
"url": "https://github.com/ccagml/leetcode_vsc"
1616
},
17-
"homepage": "https://github.com/ccagml/leetcode_ext/README.md",
17+
"homepage": "https://github.com/ccagml/leetcode_vsc/README.md",
1818
"categories": [
1919
"Other",
2020
"Snippets",
@@ -755,7 +755,7 @@
755755
},
756756
"leetcode-problem-rating.answerDiffColor": {
757757
"type": "boolean",
758-
"default": false,
758+
"default": true,
759759
"scope": "application",
760760
"description": "答案不同地方上色"
761761
},

src/controller/BricksViewController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/controller/BricksViewController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/controller/BricksViewController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Tuesday, November 22nd 2022, 11:04:59 am
55
* Author: ccagml
66
*

src/controller/EventController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/controller/EventController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/controller/EventController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, October 31st 2022, 10:16:47 am
55
* Author: ccagml
66
*

src/controller/FileButtonController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/controller/FileButtonController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/controller/FileButtonController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/controller/LoginController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/controller/LoginController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/controller/LoginController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 10th 2022, 3:06:12 pm
55
* Author: ccagml
66
*

src/controller/MainController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/controller/MainController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/controller/MainController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 10th 2022, 2:18:21 pm
55
* Author: ccagml
66
*

src/controller/RemarkController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/controller/RemarkController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/controller/RemarkController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 28th 2022, 3:29:37 pm
55
* Author: ccagml
66
*

src/controller/TreeViewController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/controller/TreeViewController.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/controller/TreeViewController.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/dao/bricksDao.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/dao/bricksDao.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/dao/bricksDao.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Wednesday, November 23rd 2022, 4:36:38 pm
55
* Author: ccagml
66
*

src/dao/choiceDao.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/dao/choiceDao.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/dao/choiceDao.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 10th 2022, 11:34:10 pm
55
* Author: ccagml
66
*

src/dao/debugArgDao.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/dao/debugArgDao.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/dao/debugArgDao.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 10th 2022, 11:38:10 pm
55
* Author: ccagml
66
*

src/dao/groupDao.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/dao/groupDao.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/dao/groupDao.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Wednesday, November 30th 2022, 9:47:36 am
55
* Author: ccagml
66
*

src/dao/scoreDao.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/dao/scoreDao.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/dao/scoreDao.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 10th 2022, 11:40:22 pm
55
* Author: ccagml
66
*

src/dao/tagsDao.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/dao/tagsDao.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/dao/tagsDao.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 10th 2022, 11:38:10 pm
55
* Author: ccagml
66
*

src/extension.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/extension.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/extension.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, October 31st 2022, 10:16:47 am
55
* Author: ccagml
66
*

src/model/Model.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/model/Model.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/model/Model.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/model/NodeModel.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/model/NodeMOdel.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/model/NodeMOdel.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainManager.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/actionChain/chainMgr.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/actionChain/chainMgr.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/cache.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/actionChain/cache.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/actionChain/cache.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/core.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/actionChain/core.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/actionChain/core.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/leetcode.cn.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/actionChain/leetcode.cn.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/actionChain/leetcode.cn.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/leetcode.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/actionChain/leetcode.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/actionChain/leetcode.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/actionChain/chainNode/retry.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/actionChain/retry.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/actionChain/retry.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/childMain.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/rpc/cli.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/rpc/cli.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/rpc/factory/api/cacheApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/cacheApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/cacheApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/pluginApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/pluginApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/pluginApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/queryApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/queryApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/queryApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/showApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/showApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/showApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/starApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/starApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/starApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/submitApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/submitApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/submitApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/testApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/testApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/testApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/api/userApi.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/api/userApi.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/api/userApi.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/factory/apiBase.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/factory/apiBase.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/factory/apiBase.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, November 17th 2022, 11:44:14 am
55
* Author: ccagml
66
*

src/rpc/utils/ReplyUtils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/Response.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/Response.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Monday, November 14th 2022, 4:04:31 pm
55
* Author: ccagml
66
*

src/rpc/utils/commUtils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* https://github.com/ccagml/leetcode_ext/src/rpc/commUtils.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* https://github.com/ccagml/leetcode_vsc/src/rpc/commUtils.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Wednesday, November 16th 2022, 4:50:55 pm
55
* Author: ccagml
66
*

src/rpc/utils/configUtils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/rpc/config.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/rpc/config.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/rpc/utils/queueUtils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/rpc/queue.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/rpc/queue.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

src/rpc/utils/sessionUtils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Filename: https://github.com/ccagml/leetcode_ext/src/rpc/session.ts
3-
* Path: https://github.com/ccagml/leetcode_ext
2+
* Filename: https://github.com/ccagml/leetcode_vsc/src/rpc/session.ts
3+
* Path: https://github.com/ccagml/leetcode_vsc
44
* Created Date: Thursday, October 27th 2022, 7:43:29 pm
55
* Author: ccagml
66
*

0 commit comments

Comments
 (0)