Skip to content

Commit 48c562a

Browse files
authored
Update the github.com/swift-server to github.com/swiftlang (swiftlang#1142)
1 parent d106e4c commit 48c562a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ More details on nvm installation can be found in the [README](https://github.com
1919
Once you have installed nvm, you can clone and configure the repository.
2020

2121
```sh
22-
git clone https://github.com/swift-server/vscode-swift.git && cd vscode-swift
22+
git clone https://github.com/swiftlang/vscode-swift.git && cd vscode-swift
2323

2424
# Install the correct version of Node.JS for developing the extension
2525
nvm install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Swift support uses [SourceKit LSP](https://github.com/apple/sourcekit-lsp) for t
1414

1515
The extension is developed by members of the Swift Community and maintained by the [SSWG](https://www.swift.org/sswg/). The aim is to provide a first-class, feature complete extension to make developing Swift applications on all platforms a seamless experience.
1616

17-
If you experience any issues or want to propose new features please [create an issue](https://github.com/swift-server/vscode-swift/issues/new) or post on the `#vscode-swift` channel on [Slack](https://swift-server.slack.com).
17+
If you experience any issues or want to propose new features please [create an issue](https://github.com/swiftlang/vscode-swift/issues/new) or post on the `#vscode-swift` channel on [Slack](https://swift-server.slack.com).
1818

1919
## Contributing
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"icon": "icon.png",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/swift-server/vscode-swift"
10+
"url": "https://github.com/swiftlang/vscode-swift"
1111
},
1212
"engines": {
1313
"vscode": "^1.88.0"

test/integration-tests/utilities/utilities.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,34 +50,34 @@ suite("Utilities Test Suite", () => {
5050
suite("getRepositoryName", () => {
5151
test("regular url", () => {
5252
assert.strictEqual(
53-
getRepositoryName("https://github.com/swift-server/vscode-swift.git"),
53+
getRepositoryName("https://github.com/swiftlang/vscode-swift.git"),
5454
"vscode-swift"
5555
);
5656
});
5757

5858
test("url does not end in .git", () => {
5959
assert.strictEqual(
60-
getRepositoryName("https://github.com/swift-server/vscode-swift"),
60+
getRepositoryName("https://github.com/swiftlang/vscode-swift"),
6161
"vscode-swift"
6262
);
6363
});
6464

6565
test("URL contains a trailing slash", () => {
6666
assert.strictEqual(
67-
getRepositoryName("https://github.com/swift-server/vscode-swift.git/"),
67+
getRepositoryName("https://github.com/swiftlang/vscode-swift.git/"),
6868
"vscode-swift"
6969
);
7070
});
7171
test("Name contains a dot", () => {
7272
assert.strictEqual(
73-
getRepositoryName("https://github.com/swift-server/vscode.swift.git"),
73+
getRepositoryName("https://github.com/swiftlang/vscode.swift.git"),
7474
"vscode.swift"
7575
);
7676
});
7777

7878
test("Name contains .git", () => {
7979
assert.strictEqual(
80-
getRepositoryName("https://github.com/swift-server/vscode.git.git"),
80+
getRepositoryName("https://github.com/swiftlang/vscode.git.git"),
8181
"vscode.git"
8282
);
8383
});

0 commit comments

Comments
 (0)