Skip to content

Commit 2cdfccf

Browse files
authored
Update swift-syntax links to swiftlang/swift-syntax (#503)
1 parent 35b1666 commit 2cdfccf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ let package = Package(
3333
],
3434

3535
dependencies: [
36-
.package(url: "https://github.com/apple/swift-syntax.git", from: "600.0.0-latest"),
36+
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "600.0.0-latest"),
3737
],
3838

3939
targets: [

Sources/TestingMacros/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if(NOT SwiftSyntax_FOUND)
2828
set(FETCHCONTENT_BASE_DIR ${CMAKE_BINARY_DIR}/_d)
2929
# TODO: Update GIT_TAG to the 6.0 release tag once it is available.
3030
FetchContent_Declare(SwiftSyntax
31-
GIT_REPOSITORY https://github.com/apple/swift-syntax
31+
GIT_REPOSITORY https://github.com/swiftlang/swift-syntax
3232
GIT_TAG 27b74edd5de625d0e399869a5af08f1501af8837)
3333
FetchContent_MakeAvailable(SwiftSyntax)
3434
endif()

Sources/TestingMacros/Support/Additions/TokenSyntaxAdditions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ extension TokenSyntax {
1414
/// The text of this instance with all backticks removed.
1515
///
1616
/// - Bug: This property works around the presence of backticks in `text.`
17-
/// ([swift-syntax-#1936](https://github.com/apple/swift-syntax/issues/1936))
17+
/// ([swift-syntax-#1936](https://github.com/swiftlang/swift-syntax/issues/1936))
1818
var textWithoutBackticks: String {
1919
text.filter { $0 != "`" }
2020
}

Sources/TestingMacros/Support/Argument.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import SwiftSyntax
1818
/// - Bug: This type is needed because trimming a syntax node or copying it into
1919
/// another node erases its source location information, so we cannot convert
2020
/// expressions to `LabeledExprSyntax` instances until we no longer need that
21-
/// information. ([swift-syntax-#1961](https://github.com/apple/swift-syntax/issues/1961))
21+
/// information. ([swift-syntax-#1961](https://github.com/swiftlang/swift-syntax/issues/1961))
2222
struct Argument {
2323
/// The argument's label, if present.
2424
var label: TokenSyntax?

0 commit comments

Comments
 (0)