@@ -228,7 +228,7 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
228
228
. subcommand_required ( true )
229
229
. subcommands ( [
230
230
Command :: new ( "show" )
231
- . about ( "overview " )
231
+ . about ( "Overview " )
232
232
. after_long_help ( color_print:: cformat!(
233
233
"<bold>Doc guide</bold>: {}" ,
234
234
MONITORING_GUIDE_URL
@@ -238,34 +238,34 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
238
238
. subcommand_value_name ( "summary" )
239
239
. subcommands ( show_subcommands ( pre_flight_settings. clone ( ) ) ) ,
240
240
Command :: new ( "list" )
241
- . about ( "lists objects by type " )
241
+ . about ( "Lists objects" )
242
242
. infer_subcommands ( pre_flight_settings. infer_subcommands )
243
243
. infer_long_args ( pre_flight_settings. infer_long_options )
244
244
. subcommands ( list_subcommands ( pre_flight_settings. clone ( ) ) ) ,
245
245
Command :: new ( "declare" )
246
- . about ( "creates or declares objects" )
246
+ . about ( "Creates or declares objects" )
247
247
. infer_subcommands ( pre_flight_settings. infer_subcommands )
248
248
. infer_long_args ( pre_flight_settings. infer_long_options )
249
249
. subcommands ( declare_subcommands ( pre_flight_settings. clone ( ) ) ) ,
250
250
Command :: new ( "delete" )
251
- . about ( "deletes objects" )
251
+ . about ( "Deletes objects" )
252
252
. infer_subcommands ( pre_flight_settings. infer_subcommands )
253
253
. infer_long_args ( pre_flight_settings. infer_long_options )
254
254
. subcommands ( delete_subcommands ( pre_flight_settings. clone ( ) ) ) ,
255
255
Command :: new ( "purge" )
256
- . about ( "purges queues" )
256
+ . about ( "Purges queues" )
257
257
. infer_subcommands ( pre_flight_settings. infer_subcommands )
258
258
. infer_long_args ( pre_flight_settings. infer_long_options )
259
259
. subcommand_value_name ( "queue" )
260
260
. subcommands ( purge_subcommands ( pre_flight_settings. clone ( ) ) ) ,
261
261
Command :: new ( "policies" )
262
- . about ( "operations on policies" )
262
+ . about ( "Operations on policies" )
263
263
. infer_subcommands ( pre_flight_settings. infer_subcommands )
264
264
. infer_long_args ( pre_flight_settings. infer_long_options )
265
265
. subcommand_value_name ( "policy" )
266
266
. subcommands ( policies_subcommands ( pre_flight_settings. clone ( ) ) ) ,
267
267
Command :: new ( "health_check" )
268
- . about ( "runs health checks" )
268
+ . about ( "Runs health checks" )
269
269
. infer_subcommands ( pre_flight_settings. infer_subcommands )
270
270
. infer_long_args ( pre_flight_settings. infer_long_options )
271
271
. subcommand_value_name ( "check" )
@@ -279,13 +279,13 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
279
279
DEPRECATED_FEATURE_GUIDE_URL
280
280
) ) ,
281
281
Command :: new ( "close" )
282
- . about ( "closes connections" )
282
+ . about ( "Closes connections" )
283
283
. infer_subcommands ( pre_flight_settings. infer_subcommands )
284
284
. infer_long_args ( pre_flight_settings. infer_long_options )
285
285
. subcommand_value_name ( "connection" )
286
286
. subcommands ( close_subcommands ( pre_flight_settings. clone ( ) ) ) ,
287
287
Command :: new ( "rebalance" )
288
- . about ( "rebalances queue leaders " )
288
+ . about ( "Rebalancing of leader replicas " )
289
289
. infer_subcommands ( pre_flight_settings. infer_subcommands )
290
290
. infer_long_args ( pre_flight_settings. infer_long_options )
291
291
. after_long_help ( color_print:: cformat!(
@@ -295,7 +295,7 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
295
295
. subcommand_value_name ( "queues" )
296
296
. subcommands ( rebalance_subcommands ( pre_flight_settings. clone ( ) ) ) ,
297
297
Command :: new ( "definitions" )
298
- . about ( "operations on definitions (everything except for messages: virtual hosts, queues, streams, exchanges, bindings, users, etc)" )
298
+ . about ( "Operations on definitions (everything except for messages: virtual hosts, queues, streams, exchanges, bindings, users, etc)" )
299
299
. infer_subcommands ( pre_flight_settings. infer_subcommands )
300
300
. infer_long_args ( pre_flight_settings. infer_long_options )
301
301
. after_long_help ( color_print:: cformat!(
@@ -305,7 +305,7 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
305
305
. subcommand_value_name ( "export" )
306
306
. subcommands ( definitions_subcommands ( pre_flight_settings. clone ( ) ) ) ,
307
307
Command :: new ( "export" )
308
- . about ( "see 'definitions export'" )
308
+ . about ( "See 'definitions export'" )
309
309
. infer_subcommands ( pre_flight_settings. infer_subcommands )
310
310
. infer_long_args ( pre_flight_settings. infer_long_options )
311
311
. after_long_help ( color_print:: cformat!(
@@ -315,7 +315,7 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
315
315
. subcommand_value_name ( "definitions" )
316
316
. subcommands ( export_subcommands ( pre_flight_settings. clone ( ) ) ) ,
317
317
Command :: new ( "import" )
318
- . about ( "see 'definitions import'" )
318
+ . about ( "See 'definitions import'" )
319
319
. infer_subcommands ( pre_flight_settings. infer_subcommands )
320
320
. infer_long_args ( pre_flight_settings. infer_long_options )
321
321
. after_long_help ( color_print:: cformat!(
@@ -325,7 +325,7 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
325
325
. subcommand_value_name ( "definitions" )
326
326
. subcommands ( import_subcommands ( pre_flight_settings. clone ( ) ) ) ,
327
327
Command :: new ( "feature_flags" )
328
- . about ( "operations on feature flags" )
328
+ . about ( "Operations on feature flags" )
329
329
. infer_subcommands ( pre_flight_settings. infer_subcommands )
330
330
. infer_long_args ( pre_flight_settings. infer_long_options )
331
331
. after_long_help ( color_print:: cformat!(
@@ -335,7 +335,7 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
335
335
. subcommand_value_name ( "feature flag" )
336
336
. subcommands ( feature_flags_subcommands ( pre_flight_settings. clone ( ) ) ) ,
337
337
Command :: new ( "deprecated_features" )
338
- . about ( "operations on deprecated features" )
338
+ . about ( "Operations on deprecated features" )
339
339
. infer_subcommands ( pre_flight_settings. infer_subcommands )
340
340
. infer_long_args ( pre_flight_settings. infer_long_options )
341
341
. after_long_help ( color_print:: cformat!(
@@ -345,14 +345,14 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
345
345
. subcommand_value_name ( "deprecated feature" )
346
346
. subcommands ( deprecated_features_subcommands ( pre_flight_settings. clone ( ) ) ) ,
347
347
Command :: new ( "publish" )
348
- . about ( color_print:: cstr!( "publishes (<red>inefficiently</red>) message(s) to a queue or a stream. <bold><red>Only suitable for development and test environments</red></bold>." ) )
348
+ . about ( color_print:: cstr!( "Publishes (<red>inefficiently</red>) message(s) to a queue or a stream. <bold><red>Only suitable for development and test environments</red></bold>." ) )
349
349
. infer_subcommands ( pre_flight_settings. infer_subcommands )
350
350
. infer_long_args ( pre_flight_settings. infer_long_options )
351
351
. after_long_help ( color_print:: cformat!( "<bold>Doc guide</bold>: {}" , PUBLISHER_GUIDE_URL ) )
352
352
. subcommand_value_name ( "message" )
353
353
. subcommands ( publish_subcommands ( pre_flight_settings. clone ( ) ) ) ,
354
354
Command :: new ( "get" )
355
- . about ( color_print:: cstr!( "fetches message(s) from a queue or stream via <bold><red>polling</red></bold>. <bold><red>Only suitable for development and test environments</red></bold>." ) )
355
+ . about ( color_print:: cstr!( "Fetches message(s) from a queue or stream via <bold><red>polling</red></bold>. <bold><red>Only suitable for development and test environments</red></bold>." ) )
356
356
. infer_subcommands ( pre_flight_settings. infer_subcommands )
357
357
. infer_long_args ( pre_flight_settings. infer_long_options )
358
358
. after_long_help ( color_print:: cformat!( "<bold>Doc guide</bold>: {}" , POLLING_CONSUMER_GUIDE_URL ) )
0 commit comments