Skip to content

Commit

Permalink
Merge pull request #1682 from lamtrinhdev/Fix_links
Browse files Browse the repository at this point in the history
Update links for repositories moved to the swiftlang org on GitHub
  • Loading branch information
thomasvl authored Jul 25, 2024
2 parents e17d61f + 8202ca5 commit 103cf91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Documentation/STYLE_GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ a method with a large number of generic types and/or arguments), we suggest
two pieces of advice:

1. Look to the
[Swift standard library](https://github.com/apple/swift/tree/main/stdlib/public/core)
[Swift standard library](https://github.com/swiftlang/swift/tree/main/stdlib/public/core)
for guidance.
1. Don't fight Xcode's auto-indenting unless doing so would make the
formatting look horrible. Xcode has some baked-in assumptions about how
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftProtobufPluginLibrary/CodeGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public protocol CodeGenerator {

extension CommandLine {
/// Get the command-line arguments passed to this process in a non mutable
/// form. Idea from https://github.com/apple/swift/issues/66213
/// form. Idea from https://github.com/swiftlang/swift/issues/66213
///
/// - Returns: An array of command-line arguments.
fileprivate static let safeArguments: [String] =
Expand Down
2 changes: 1 addition & 1 deletion Sources/protoc-gen-swift/CommandLine+Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extension CommandLine {

static var programName: String {
// Get the command-line arguments passed to this process in a non mutable
// form. Idea from https://github.com/apple/swift/issues/66213
// form. Idea from https://github.com/swiftlang/swift/issues/66213
let safeArgs: [String] =
UnsafeBufferPointer(start: unsafeArgv, count: Int(argc)).compactMap {
String(validatingUTF8: $0!)
Expand Down

0 comments on commit 103cf91

Please sign in to comment.