We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5ade2c1 + b3a9c24 commit 723868aCopy full SHA for 723868a
Sources/ArgumentParser/Documentation.docc/Articles/ManualParsing.md
@@ -30,7 +30,7 @@ The static `parseOrExit()` method either returns a fully initialized instance of
30
We can perform validation on the inputs and exit the script if necessary:
31
32
```swift
33
-guard let options.elements.count >= options.count else {
+guard options.elements.count >= options.count else {
34
let error = ValidationError("Please specify a 'count' less than the number of elements.")
35
SelectOptions.exit(withError: error)
36
}
0 commit comments