@@ -30,7 +30,7 @@ extension SwiftPackageCommand {
30
30
extension SwiftPackageCommand . Config {
31
31
struct SetMirror : SwiftCommand {
32
32
static let configuration = CommandConfiguration (
33
- abstract: " Set a mirror for a dependency "
33
+ abstract: " Set a mirror for a dependency. "
34
34
)
35
35
36
36
@OptionGroup ( visibility: . hidden)
@@ -45,10 +45,10 @@ extension SwiftPackageCommand.Config {
45
45
@Option ( name: . customLong( " mirror-url " ) , help: . hidden)
46
46
var _deprecate_mirrorURL : String ?
47
47
48
- @Option ( help: " The original url or identity " )
48
+ @Option ( help: " The original url or identity. " )
49
49
var original : String ?
50
50
51
- @Option ( help: " The mirror url or identity " )
51
+ @Option ( help: " The mirror url or identity. " )
52
52
var mirror : String ?
53
53
54
54
func run( _ swiftCommandState: SwiftCommandState ) throws {
@@ -88,7 +88,7 @@ extension SwiftPackageCommand.Config {
88
88
89
89
struct UnsetMirror : SwiftCommand {
90
90
static let configuration = CommandConfiguration (
91
- abstract: " Remove an existing mirror "
91
+ abstract: " Remove an existing mirror. "
92
92
)
93
93
94
94
@OptionGroup ( visibility: . hidden)
@@ -103,10 +103,10 @@ extension SwiftPackageCommand.Config {
103
103
@Option ( name: . customLong( " mirror-url " ) , help: . hidden)
104
104
var _deprecate_mirrorURL : String ?
105
105
106
- @Option ( help: " The original url or identity " )
106
+ @Option ( help: " The original url or identity. " )
107
107
var original : String ?
108
108
109
- @Option ( help: " The mirror url or identity " )
109
+ @Option ( help: " The mirror url or identity. " )
110
110
var mirror : String ?
111
111
112
112
func run( _ swiftCommandState: SwiftCommandState ) throws {
@@ -143,7 +143,7 @@ extension SwiftPackageCommand.Config {
143
143
144
144
struct GetMirror : SwiftCommand {
145
145
static let configuration = CommandConfiguration (
146
- abstract: " Print mirror configuration for the given package dependency "
146
+ abstract: " Print mirror configuration for the given package dependency. "
147
147
)
148
148
149
149
@OptionGroup ( visibility: . hidden)
@@ -154,7 +154,7 @@ extension SwiftPackageCommand.Config {
154
154
@Option ( name: . customLong( " original-url " ) , help: . hidden)
155
155
var _deprecate_originalURL : String ?
156
156
157
- @Option ( help: " The original url or identity " )
157
+ @Option ( help: " The original url or identity. " )
158
158
var original : String ?
159
159
160
160
func run( _ swiftCommandState: SwiftCommandState ) throws {
0 commit comments