Skip to content

Commit 73fc2eb

Browse files
authored
Update links for repositories moved to the swiftlang org on GitHub (#739)
1 parent d4f83c8 commit 73fc2eb

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

_data/tools/editors.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
guide: /documentation/articles/zero-to-swift-nvim.html
1717
- name: Other Editors
1818
description: Any editor that supports the Language Server Protocol (LSP) can use SourceKit-LSP to provide intelligent editor functionality for Swift.
19-
link: https://github.com/apple/sourcekit-lsp/tree/main/Documentation/Editor%20Integration.md
20-
guide: https://github.com/apple/sourcekit-lsp/tree/main/Documentation/Editor%20Integration.md
19+
link: https://github.com/swiftlang/sourcekit-lsp/tree/main/Documentation/Editor%20Integration.md
20+
guide: https://github.com/swiftlang/sourcekit-lsp/tree/main/Documentation/Editor%20Integration.md

documentation/articles/getting-started-with-vscode-swift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ the Command Palette and following the instructions below.
5656

5757
## Language Features
5858

59-
The Swift extension uses [SourceKit-LSP](https://github.com/apple/sourcekit-lsp)
59+
The Swift extension uses [SourceKit-LSP](https://github.com/swiftlang/sourcekit-lsp)
6060
to power language features. SourceKit-LSP provides the following features in the
6161
editor. Use these links to see the VS Code documentation for each topic:
6262

documentation/articles/wrapping-c-cpp-library-in-swift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ when working with C/C++ in Swift.
5656

5757
A module map is generated automatically for Clang targets (e.g., `CMyLib`) unless a custom one is present. (i.e., `module.modulemap` file exists in the header directory)
5858

59-
The rules for module map generation can be found [here](https://github.com/apple/swift-package-manager/blob/main/Sources/PackageLoading/ModuleMapGenerator.swift).
59+
The rules for module map generation can be found [here](https://github.com/swiftlang/swift-package-manager/blob/main/Sources/PackageLoading/ModuleMapGenerator.swift).
6060

6161
### Include files generated by C/C++ library build
6262

documentation/package-manager/_basic-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ $ ./.build/debug/Dealer
263263
* * *
264264
265265
For more information about using the Swift Package Manager,
266-
see the documentation provided in the [Swift Package Manager project on GitHub](https://github.com/apple/swift-package-manager).
266+
see the documentation provided in the [Swift Package Manager project on GitHub](https://github.com/swiftlang/swift-package-manager).
267267
268268
269269
[PlayingCard]: https://github.com/apple/example-package-playingcard

documentation/server/guides/setup-and-ide-alternatives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ A number of editors you may already be familiar with have support for writing Sw
2626

2727
## Language Server Protocol (LSP) Support
2828

29-
The [SourceKit-LSP project](https://github.com/apple/sourcekit-lsp) provides a Swift implementation of the [Language Server Protocol](https://microsoft.github.io/language-server-protocol/), which provides features such as code completion and jump-to-definition in supported editors.
29+
The [SourceKit-LSP project](https://github.com/swiftlang/sourcekit-lsp) provides a Swift implementation of the [Language Server Protocol](https://microsoft.github.io/language-server-protocol/), which provides features such as code completion and jump-to-definition in supported editors.
3030

31-
The project has both an [extensive list of editors that support it](https://github.com/apple/sourcekit-lsp/tree/main/Editors) and setup instructions for those editors, including many of those listed above.
31+
The project has both an [extensive list of editors that support it](https://github.com/swiftlang/sourcekit-lsp/tree/main/Editors) and setup instructions for those editors, including many of those listed above.
3232

3333
_Do you know about another IDE or IDE plugin that is missing? Please submit a PR to add them here!_

documentation/source-code/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ file](https://github.com/apple/swift/blob/main/README.md).
3232

3333
## Package Manager
3434

35-
[swift-package-manager](https://github.com/apple/swift-package-manager)
35+
[swift-package-manager](https://github.com/swiftlang/swift-package-manager)
3636
: The source code for the Swift package manager.
3737

3838
[swift-llbuild](https://github.com/apple/swift-llbuild)
@@ -48,18 +48,18 @@ file](https://github.com/apple/swift/blob/main/README.md).
4848

4949
## Source Tooling
5050

51-
[swift-syntax](https://github.com/apple/swift-syntax)
51+
[swift-syntax](https://github.com/swiftlang/swift-syntax)
5252
: The source code for SwiftSyntax, which enables Swift tools to parse, inspect, generate, and transform Swift source code.
5353

54-
[swift-format](https://github.com/apple/swift-format)
54+
[swift-format](https://github.com/swiftlang/swift-format)
5555
: The source code for the formatting technology for Swift source code.
5656

5757
## SourceKit-LSP Service
5858

59-
[sourcekit-lsp](https://github.com/apple/sourcekit-lsp)
59+
[sourcekit-lsp](https://github.com/swiftlang/sourcekit-lsp)
6060
: The source code for the SourceKit-LSP language service.
6161

62-
[indexstore-db](https://github.com/apple/indexstore-db)
62+
[indexstore-db](https://github.com/swiftlang/indexstore-db)
6363
: The source code for the index database library.
6464

6565

getting-started/_build-system.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@ $ swift run Hello `whoami`
165165
> including how to build modules, import dependencies, and map system libraries,
166166
> see the [Swift Package Manager](/documentation/package-manager) section of the website.
167167
168-
> To learn more about Package Plugins, see [Getting Started with Plugins](https://github.com/apple/swift-package-manager/blob/main/Documentation/Plugins.md#getting-started-with-plugins).
168+
> To learn more about Package Plugins, see [Getting Started with Plugins](https://github.com/swiftlang/swift-package-manager/blob/main/Documentation/Plugins.md#getting-started-with-plugins).

getting-started/_reference-documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
// TODO
44

5-
[Using C System Modules](https://github.com/apple/swift-package-manager/blob/main/Documentation/SystemModules.md)
5+
[Using C System Modules](https://github.com/swiftlang/swift-package-manager/blob/main/Documentation/SystemModules.md)

getting-started/embedded-swift/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ Hooray! Our first *host-side* Embedded Swift program is working!
215215
- The [Embedded Swift Vision Document](https://github.com/swiftlang/swift-evolution/blob/main/visions/embedded-swift.md) will give you an overview of the approaches and goals of Embedded Swift, and also what exactly is in the Embedded Swift language subset.
216216
- The [collection of Embedded Swift example projects](https://github.com/apple/swift-embedded-examples) on GitHub shows on which embedded devices can Swift work today, and the examples can also be used as templates for your own projects.
217217
- The [Embedded Swift User Manual](https://github.com/apple/swift/blob/main/docs/EmbeddedSwift/UserManual.md) describes how to use the Embedded Swift compilation mode and how to interact with the compiler.
218-
- You might want to set up [Swift editor integration via SourceKit-LSP](https://github.com/apple/sourcekit-lsp) to get features like indexing, autocomplete, jump-to-definition, show declarations/documentations, etc. to work in your favorite editor or IDE.
218+
- You might want to set up [Swift editor integration via SourceKit-LSP](https://github.com/swiftlang/sourcekit-lsp) to get features like indexing, autocomplete, jump-to-definition, show declarations/documentations, etc. to work in your favorite editor or IDE.
219219
- The [Swift forums](https://forums.swift.org/) are the best place to ask questions, give feedback or share your cool projects.
220220

221221
---

install/macos/package_installer/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To submit to the App Store you must build your app using the version of Swift th
1414
<div class="warning" markdown="1">
1515
Xcode is not required to run the package installer or use an installed
1616
toolchain. However, when Xcode is not installed, the functionality of the Swift
17-
Package Manager may be limited due to some [outstanding issues](https://github.com/apple/swift-package-manager/issues/4396).
17+
Package Manager may be limited due to some [outstanding issues](https://github.com/swiftlang/swift-package-manager/issues/4396).
1818
</div>
1919

2020
0. Download a latest Swift release

0 commit comments

Comments
 (0)