mirror of
https://github.com/apple/container.git
synced 2026-08-28 19:36:31 +00:00
Fix duplicate "(default: 3)" in --max-concurrent-downloads help text (#1725)
Remove manually specified default value from help string since ArgumentParser already appends it automatically from the property's default value. Signed-off-by: Charlie Le <charlie_le@apple.com>
This commit is contained in:
@@ -389,7 +389,7 @@ public struct Flags {
|
||||
self.maxConcurrentDownloads = maxConcurrentDownloads
|
||||
}
|
||||
|
||||
@Option(name: .long, help: "Maximum number of concurrent downloads (default: 3)")
|
||||
@Option(name: .long, help: "Maximum number of concurrent downloads")
|
||||
public var maxConcurrentDownloads: Int = 3
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user