@@ -25,13 +25,13 @@ pub struct Args {
25
25
26
26
#[ arg( verbatim_doc_comment) ]
27
27
/// Reverse list output
28
- /// Example: cnb --rev ing -- list
28
+ /// Example: cnb --rev ing list
29
29
#[ arg( long) ]
30
30
pub rev : bool ,
31
31
32
32
#[ arg( verbatim_doc_comment) ]
33
33
/// Skip items while request list
34
- /// Example: cnb --skip 2 ing -- list
34
+ /// Example: cnb --skip 2 ing list
35
35
/// Use this option to save network I/O if some items of the list output are not needed
36
36
/// If this option is required but not specified, it will be set to 0
37
37
#[ arg( long) ]
@@ -41,7 +41,7 @@ pub struct Args {
41
41
42
42
#[ arg( verbatim_doc_comment) ]
43
43
/// Take items while request list
44
- /// Example: cnb --take 2 ing -- list
44
+ /// Example: cnb --take 2 ing list
45
45
/// Use this option to save network I/O if only a subset of the list output are required
46
46
/// <LENGTH> should be in the range [0,100]
47
47
/// If <LENGTH> is greater than 100, it will be set to 100
@@ -62,7 +62,7 @@ pub struct Args {
62
62
63
63
#[ arg( verbatim_doc_comment) ]
64
64
/// Execute in debug mode, this will print some messages for the developer
65
- /// Example: cnb --debug ing -- list
65
+ /// Example: cnb --debug ing list
66
66
/// THIS OPTION IS UNSTABLE FOREVER and any output from it may change in the future
67
67
/// You should NEVER rely on the output while you turn this option on
68
68
/// *
@@ -83,7 +83,7 @@ pub struct Args {
83
83
84
84
#[ arg( verbatim_doc_comment) ]
85
85
/// Fail if error occurred
86
- /// Example: cnb --fail-on-error ing -- list
86
+ /// Example: cnb --fail-on-error ing list
87
87
/// *
88
88
#[ arg( long) ]
89
89
#[ clap( visible_alias = "foe" ) ]
@@ -92,7 +92,7 @@ pub struct Args {
92
92
93
93
#[ arg( verbatim_doc_comment) ]
94
94
/// Suppress all output
95
- /// Example: cnb --quiet ing -- list
95
+ /// Example: cnb --quiet ing list
96
96
/// *
97
97
#[ arg( long) ]
98
98
#[ clap( visible_alias = "silent" ) ]
0 commit comments