Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoutanov committed Apr 18, 2020
1 parent de86455 commit a9cf8a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
- `Wait(t, timeout).UntilAsserted(assertion)`: time-based assertions
- `TestCapture`: capture of `testing.T` failures (for self-testing of assertion libraries)
- `Intercept(t).Mutate(...)`: enrichment of assertion failure messages
* `commander`: **schema-less command-line argument parsing**
* `commander`: **schemaless command-line argument parsing**
- `Parse(os.Args).Mappify`
* `fault`: **fault injection**
* `arity`: **extraction of optional arguments to variadic functions**
Expand Down
2 changes: 1 addition & 1 deletion commander/commander.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (parts Parts) Mappify() PartsMap {
return partsMap
}

// Parse processes the given cmdArgs into a Parts slice. No error is returned as parsing is schema-less; the parser
// Parse processes the given cmdArgs into a Parts slice. No error is returned as parsing is schemaless; the parser
// extracts all flags, switches and free-form values that may be present.
func Parse(cmdArgs []string) Parts {
len := len(cmdArgs)
Expand Down

0 comments on commit a9cf8a9

Please sign in to comment.