Skip to content

Commit 01c6606

Browse files
authored
Merge pull request #235 from friederbluemle/fix-caps
Fix capitalization of GitHub org
2 parents 519232d + 6c2a77b commit 01c6606

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This repository contains the code for the following npm modules:
1616

1717
## License
1818

19-
[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)
19+
[MIT](https://github.com/microsoft/vscode-languageserver-node/blob/master/License.txt)
2020

2121
===
2222

adapter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Npm module to implement a VS Code debug adapter using [Node.js](https://nodejs.o
77

88
## License
99

10-
[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)
10+
[MIT](https://github.com/microsoft/vscode-languageserver-node/blob/master/License.txt)

adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/Microsoft/vscode-debugadapter-node.git"
9+
"url": "https://github.com/microsoft/vscode-debugadapter-node.git"
1010
},
1111
"bugs": {
12-
"url": "https://github.com/Microsoft/vscode-debugadapter-node/issues"
12+
"url": "https://github.com/microsoft/vscode-debugadapter-node/issues"
1313
},
1414
"main": "./lib/main.js",
1515
"browser": {

adapter/src/tests/DebugAdapter.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ suite('URI', () => {
5757

5858
// not percent-encoded
5959
assert.equal(da.convertClientPath2Debugger('c:\\abc\\foo:bar.js'), 'file:///c:/abc/foo:bar.js');
60-
assert.equal(da.convertClientPath2Debugger('c:\\abc\\foo+bar.js'), 'file:///c:/abc/foo+bar.js'); // see https://github.com/Microsoft/vscode-debugadapter-node/issues/182
60+
assert.equal(da.convertClientPath2Debugger('c:\\abc\\foo+bar.js'), 'file:///c:/abc/foo+bar.js'); // see https://github.com/microsoft/vscode-debugadapter-node/issues/182
6161
assert.equal(da.convertClientPath2Debugger('c:\\abc\\foo_bar.js'), 'file:///c:/abc/foo_bar.js');
6262
assert.equal(da.convertClientPath2Debugger('c:\\abc\\[email protected]'), 'file:///c:/abc/[email protected]');
6363

64-
// see https://github.com/Microsoft/vscode-debugadapter-node/issues/#159
64+
// see https://github.com/microsoft/vscode-debugadapter-node/issues/#159
6565
assert.equal(da.convertClientPath2Debugger('c:\\abc\\test.js'), 'file:///c:/abc/test.js');
6666

6767
} else {
@@ -80,7 +80,7 @@ suite('URI', () => {
8080

8181
// not percent-encoded
8282
assert.equal(da.convertClientPath2Debugger('/abc/foo:bar.js'), 'file:///abc/foo:bar.js');
83-
assert.equal(da.convertClientPath2Debugger('/abc/foo+bar.js'), 'file:///abc/foo+bar.js'); // see https://github.com/Microsoft/vscode-debugadapter-node/issues/182
83+
assert.equal(da.convertClientPath2Debugger('/abc/foo+bar.js'), 'file:///abc/foo+bar.js'); // see https://github.com/microsoft/vscode-debugadapter-node/issues/182
8484
assert.equal(da.convertClientPath2Debugger('/abc/foo_bar.js'), 'file:///abc/foo_bar.js');
8585
assert.equal(da.convertClientPath2Debugger('/abc/[email protected]'), 'file:///abc/[email protected]');
8686
}
@@ -107,11 +107,11 @@ suite('URI', () => {
107107

108108
// not percent-encoded
109109
assert.equal(da.convertDebuggerPath2Client('file:///c:/abc/foo:bar.js'), 'c:\\abc\\foo:bar.js');
110-
assert.equal(da.convertDebuggerPath2Client('file:///c:/abc/foo+bar.js'), 'c:\\abc\\foo+bar.js'); //see https://github.com/Microsoft/vscode-debugadapter-node/issues/182
110+
assert.equal(da.convertDebuggerPath2Client('file:///c:/abc/foo+bar.js'), 'c:\\abc\\foo+bar.js'); //see https://github.com/microsoft/vscode-debugadapter-node/issues/182
111111
assert.equal(da.convertDebuggerPath2Client('file:///c:/abc/foo_bar.js'), 'c:\\abc\\foo_bar.js');
112112
assert.equal(da.convertDebuggerPath2Client('file:///c:/abc/[email protected]'), 'c:\\abc\\[email protected]');
113113

114-
// see https://github.com/Microsoft/vscode-debugadapter-node/issues/#159
114+
// see https://github.com/microsoft/vscode-debugadapter-node/issues/#159
115115
assert.equal(da.convertDebuggerPath2Client('file:///c:/abc/foo%20bar/test.js'), 'c:\\abc\\foo bar\\test.js');
116116

117117
} else {
@@ -130,7 +130,7 @@ suite('URI', () => {
130130

131131
// not percent-encoded
132132
assert.equal(da.convertClientPath2Debugger('/abc/foo:bar.js'), 'file:///abc/foo:bar.js');
133-
assert.equal(da.convertClientPath2Debugger('/abc/foo+bar.js'), 'file:///abc/foo+bar.js'); // see https://github.com/Microsoft/vscode-debugadapter-node/issues/182
133+
assert.equal(da.convertClientPath2Debugger('/abc/foo+bar.js'), 'file:///abc/foo+bar.js'); // see https://github.com/microsoft/vscode-debugadapter-node/issues/182
134134
assert.equal(da.convertClientPath2Debugger('/abc/foo_bar.js'), 'file:///abc/foo_bar.js');
135135
assert.equal(da.convertClientPath2Debugger('/abc/[email protected]'), 'file:///abc/[email protected]');
136136

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"private": true,
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/Microsoft/vscode-debugadapter-node.git"
12+
"url": "https://github.com/microsoft/vscode-debugadapter-node.git"
1313
},
1414
"bugs": {
15-
"url": "https://github.com/Microsoft/vscode-debugadapter-node/issues"
15+
"url": "https://github.com/microsoft/vscode-debugadapter-node/issues"
1616
},
1717
"devDependencies": {
1818
"@types/node": "14.x",

protocol/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ As of August 2018 the change history of the Debug Adapter Protocol lives on the
1212

1313
## License
1414

15-
[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)
15+
[MIT](https://github.com/microsoft/vscode-languageserver-node/blob/master/License.txt)

protocol/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/Microsoft/vscode-debugadapter-node.git"
9+
"url": "https://github.com/microsoft/vscode-debugadapter-node.git"
1010
},
1111
"bugs": {
12-
"url": "https://github.com/Microsoft/vscode-debugadapter-node/issues"
12+
"url": "https://github.com/microsoft/vscode-debugadapter-node/issues"
1313
},
1414
"main": "./lib/debugProtocol.js",
1515
"typings": "./lib/debugProtocol",

testSupport/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ test('should stop on a breakpoint', () => {
4444

4545
## License
4646

47-
[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)
47+
[MIT](https://github.com/microsoft/vscode-languageserver-node/blob/master/License.txt)

testSupport/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/Microsoft/vscode-debugadapter-node.git"
9+
"url": "https://github.com/microsoft/vscode-debugadapter-node.git"
1010
},
1111
"bugs": {
12-
"url": "https://github.com/Microsoft/vscode-debugadapter-node/issues"
12+
"url": "https://github.com/microsoft/vscode-debugadapter-node/issues"
1313
},
1414
"main": "./lib/main.js",
1515
"typings": "./lib/main",

0 commit comments

Comments
 (0)