mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Typo fix: programmatically (#1679)
Signed-off-by: Stephen Kitt <steve@sk2.org>
This commit is contained in:
parent
39c88041d6
commit
7a0320fc27
7 changed files with 14 additions and 14 deletions
|
|
@ -1077,7 +1077,7 @@ This is simply a copy of what you should see on running `man mlr` at a command p
|
|||
|
||||
1mfilter0m
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically filter which
|
||||
Lets you use a domain-specific language to programmatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
|
|
@ -1535,7 +1535,7 @@ This is simply a copy of what you should see on running `man mlr` at a command p
|
|||
|
||||
1mput0m
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically alter stream records.
|
||||
Lets you use a domain-specific language to programmatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
|
|
|
|||
|
|
@ -1056,7 +1056,7 @@
|
|||
|
||||
1mfilter0m
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically filter which
|
||||
Lets you use a domain-specific language to programmatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
|
|
@ -1514,7 +1514,7 @@
|
|||
|
||||
1mput0m
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically alter stream records.
|
||||
Lets you use a domain-specific language to programmatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
|
|
|
|||
|
|
@ -970,7 +970,7 @@ a,b,c
|
|||
</pre>
|
||||
<pre class="pre-non-highlight-in-pair">
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically filter which
|
||||
Lets you use a domain-specific language to programmatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
|
|
@ -2306,7 +2306,7 @@ Options:
|
|||
</pre>
|
||||
<pre class="pre-non-highlight-in-pair">
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically alter stream records.
|
||||
Lets you use a domain-specific language to programmatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
|
|
|
|||
|
|
@ -1056,7 +1056,7 @@
|
|||
|
||||
1mfilter0m
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically filter which
|
||||
Lets you use a domain-specific language to programmatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
|
|
@ -1514,7 +1514,7 @@
|
|||
|
||||
1mput0m
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically alter stream records.
|
||||
Lets you use a domain-specific language to programmatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
|
|
|
|||
|
|
@ -1319,7 +1319,7 @@ Options:
|
|||
.\}
|
||||
.nf
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically filter which
|
||||
Lets you use a domain-specific language to programmatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
|
|
@ -1909,7 +1909,7 @@ Options:
|
|||
.\}
|
||||
.nf
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically alter stream records.
|
||||
Lets you use a domain-specific language to programmatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
|
|
|
|||
|
|
@ -53,9 +53,9 @@ func transformerPutOrFilterUsage(
|
|||
) {
|
||||
fmt.Fprintf(o, "Usage: %s %s [options] {DSL expression}\n", "mlr", verb)
|
||||
if verb == "put" {
|
||||
fmt.Fprintf(o, "Lets you use a domain-specific language to programatically alter stream records.\n")
|
||||
fmt.Fprintf(o, "Lets you use a domain-specific language to programmatically alter stream records.\n")
|
||||
} else if verb == "filter" {
|
||||
fmt.Fprintf(o, "Lets you use a domain-specific language to programatically filter which\n")
|
||||
fmt.Fprintf(o, "Lets you use a domain-specific language to programmatically filter which\n")
|
||||
fmt.Fprintf(o, "stream records will be output.\n")
|
||||
}
|
||||
fmt.Fprintf(o, "See also: https://miller.readthedocs.io/en/latest/reference-verbs\n")
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@ Options:
|
|||
================================================================
|
||||
filter
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically filter which
|
||||
Lets you use a domain-specific language to programmatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
|
|
@ -666,7 +666,7 @@ Options:
|
|||
================================================================
|
||||
put
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to programatically alter stream records.
|
||||
Lets you use a domain-specific language to programmatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue