Skip to content

Commit 57dd5a0

Browse files
committed
Update links for repositories moved to the swiftlang org on GitHub
1 parent ebab3ea commit 57dd5a0

File tree

23 files changed

+87
-87
lines changed

23 files changed

+87
-87
lines changed

.github/ISSUE_TEMPLATE/BASICFORMAT_BUG.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ labels: [bug, BasicFormat]
44
body:
55
- type: markdown
66
attributes:
7-
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing BasicFormat Bug Reports](https://swiftpackageindex.com/apple/swift-syntax/main/documentation/swiftbasicformat/filingbugreports).
7+
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing BasicFormat Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftbasicformat/filingbugreports).
88
- type: textarea
99
id: source
1010
attributes:

.github/ISSUE_TEMPLATE/PARSER_BUG.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ labels: [bug, SwiftParser]
44
body:
55
- type: markdown
66
attributes:
7-
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing Parser Bug Reports](https://swiftpackageindex.com/apple/swift-syntax/main/documentation/swiftparser/filingbugreports).
7+
value: Thanks for taking the time to fill out this bug report! We would really appreciate if you could take the time to reduce the issue as described in [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports).
88
- type: dropdown
99
id: issue-type
1010
attributes:
1111
label: Issue Kind
12-
description: What kind of issue is this? See [Filing Parser Bug Reports](https://swiftpackageindex.com/apple/swift-syntax/main/documentation/swiftparser/filingbugreports) for more details.
12+
description: What kind of issue is this? See [Filing Parser Bug Reports](https://swiftpackageindex.com/swiftlang/swift-syntax/main/documentation/swiftparser/filingbugreports) for more details.
1313
options:
1414
- Round-Trip Failure
1515
- Parser Crash

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
url: https://forums.swift.org/tags/c/development/tooling/39/swift-syntax
1212
about: Ask and answer questions about SwiftSyntax
1313
- name: SwiftSyntax Documentation
14-
url: https://swiftpackageindex.com/apple/swift-syntax/documentation/swiftsyntax
14+
url: https://swiftpackageindex.com/swiftlang/swift-syntax/documentation/swiftsyntax
1515
about: Learn about how to use the SwiftSyntax in your projects

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ swift-syntax is a SwiftPM package, so you can build and test it using anything t
1919
2020
## Formatting
2121

22-
swift-syntax is formatted using [swift-format](https://github.com/apple/swift-format) to ensure a consistent style.
22+
swift-syntax is formatted using [swift-format](https://github.com/swiftlang/swift-format) to ensure a consistent style.
2323

2424
To format your changes run the formatter using the following command
2525
```bash

CodeGeneration/Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
.executable(name: "generate-swift-syntax", targets: ["generate-swift-syntax"])
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/apple/swift-syntax", from: "510.0.0"),
15+
.package(url: "https://github.com/swiftlang/swift-syntax", from: "510.0.0"),
1616
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.2"),
1717
],
1818
targets: [

CodeGeneration/Sources/SyntaxSupport/Child.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public class Child {
197197
The old string-based implementation returned "Token" to ensure that `tokenKind` is not nil
198198
and that `isToken` computed-property will return true, but the value "Token" had never been
199199
used in other cases. We should try to remove this computed property altogether in the issue:
200-
https://github.com/apple/swift-syntax/issues/2010
200+
https://github.com/swiftlang/swift-syntax/issues/2010
201201
*/
202202
return .unknown
203203
}

Examples/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Furthermore, SwiftSyntax uses [`SwiftSyntaxBuilder`](../Sources/SwiftSyntaxBuild
2323

2424
[**Swift AST Explorer**](https://swift-ast-explorer.com/): A Swift AST visualizer.
2525

26-
[**Swift Stress Tester**](https://github.com/apple/swift-stress-tester): A test driver for `sourcekitd` and Swift evolution.
26+
[**Swift Stress Tester**](https://github.com/swiftlang/swift-stress-tester): A test driver for `sourcekitd` and Swift evolution.
2727

28-
[**swift-format**](https://github.com/apple/swift-format): Formatting technology for Swift source code.
28+
[**swift-format**](https://github.com/swiftlang/swift-format): Formatting technology for Swift source code.
2929

3030
[**SwiftLint**](https://github.com/realm/SwiftLint): A tool to enforce Swift style and conventions.

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The swift-syntax package is a set of libraries that work on a source-accurate tr
44

55
## Documentation
66

7-
You can read SwiftSyntax’s documentation on [swiftpackageindex.com](https://swiftpackageindex.com/apple/swift-syntax/documentation).
7+
You can read SwiftSyntax’s documentation on [swiftpackageindex.com](https://swiftpackageindex.com/swiftlang/swift-syntax/documentation).
88

99
A great way to interactively explore the SwiftSyntax tree of a source file is https://swift-ast-explorer.com, developed by [@kishikawakatsumi](https://github.com/kishikawakatsumi).
1010

@@ -19,15 +19,15 @@ To depend on swift-syntax in a SwiftPM package, add the following to your `Packa
1919

2020
```swift
2121
dependencies: [
22-
.package(url: "https://github.com/apple/swift-syntax.git", from: "<#latest swift-syntax tag#>"),
22+
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "<#latest swift-syntax tag#>"),
2323
],
2424
```
2525

26-
To add swift-syntax as a dependency of your Xcode project, go to the *Package Dependencies* tab of your Xcode project, click the plus button and search for https://github.com/apple/swift-syntax.git.
26+
To add swift-syntax as a dependency of your Xcode project, go to the *Package Dependencies* tab of your Xcode project, click the plus button and search for https://github.com/swiftlang/swift-syntax.git.
2727

2828
## Reporting Issues
2929

30-
If you should hit any issues while using SwiftSyntax, we appreciate bug reports on [GitHub Issue](https://github.com/apple/swift-syntax/issues).
30+
If you should hit any issues while using SwiftSyntax, we appreciate bug reports on [GitHub Issue](https://github.com/swiftlang/swift-syntax/issues).
3131

3232
## Contributing
3333

@@ -42,7 +42,7 @@ into your `WORKSPACE` and depend on the libraries you need from the
4242
`Library_opt` target (such as `SwiftSyntax_opt`) which forces
4343
SwiftSyntax to always build with optimizations enabled. This may help
4444
local runtime performance at the cost of debuggability, and initial
45-
build time. Please tag any [issues](https://github.com/apple/swift-syntax/issues) related to the Bazel configuration with the label "Bazel".
45+
build time. Please tag any [issues](https://github.com/swiftlang/swift-syntax/issues) related to the Bazel configuration with the label "Bazel".
4646

4747
## License
4848

0 commit comments

Comments
 (0)