diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-09-15 14:20:25 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-09-15 14:20:25 -0400 |
commit | 1b1c5c0c7f2fb49c43194d84f4bcc25852372858 (patch) | |
tree | fbc62ce601194121f492480d893cd2e9d14b2fc2 /parse.c | |
parent | ba173f371f4d300976ba15d93f67661f51b7cb42 (diff) | |
download | bfs-1b1c5c0c7f2fb49c43194d84f4bcc25852372858.tar.xz |
Fix the order of -fprintf FILE FORMAT in the docs
Diffstat (limited to 'parse.c')
-rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2955,7 +2955,7 @@ static struct expr *parse_help(struct parser_state *state, int arg1, int arg2) { cfprintf(cout, " ${blu}-fls${rs} ${bld}FILE${rs}\n"); cfprintf(cout, " ${blu}-fprint${rs} ${bld}FILE${rs}\n"); cfprintf(cout, " ${blu}-fprint0${rs} ${bld}FILE${rs}\n"); - cfprintf(cout, " ${blu}-fprintf${rs} ${bld}FORMAT${rs} ${bld}FILE${rs}\n"); + cfprintf(cout, " ${blu}-fprintf${rs} ${bld}FILE${rs} ${bld}FORMAT${rs}\n"); cfprintf(cout, " Like ${blu}-ls${rs}/${blu}-print${rs}/${blu}-print0${rs}/${blu}-printf${rs}, but write to ${bld}FILE${rs} instead of standard\n" " output\n"); cfprintf(cout, " ${blu}-ls${rs}\n"); |