Merge pull request #207 from cakebaker/lscpu_fix_formatting
lscpu: fix code formatting & remove sentence from help text
This commit is contained in:
		@@ -56,7 +56,16 @@ pub fn uu_app() -> Command {
 | 
				
			|||||||
        .version(crate_version!())
 | 
					        .version(crate_version!())
 | 
				
			||||||
        .about(ABOUT)
 | 
					        .about(ABOUT)
 | 
				
			||||||
        .override_usage(format_usage(USAGE))
 | 
					        .override_usage(format_usage(USAGE))
 | 
				
			||||||
        .infer_long_args(true).arg(Arg::new(options::HEX).short('x').long("hex").action(ArgAction::SetTrue).help("Use hexadecimal masks for CPU sets (for example 'ff'). The default is to print the
 | 
					        .infer_long_args(true)
 | 
				
			||||||
        sets in list format (for example 0,1). Note that before version 2.30 the mask has been
 | 
					        .arg(
 | 
				
			||||||
        printed with 0x prefix.").required(false))
 | 
					            Arg::new(options::HEX)
 | 
				
			||||||
 | 
					                .short('x')
 | 
				
			||||||
 | 
					                .long("hex")
 | 
				
			||||||
 | 
					                .action(ArgAction::SetTrue)
 | 
				
			||||||
 | 
					                .help(
 | 
				
			||||||
 | 
					                    "Use hexadecimal masks for CPU sets (for example 'ff'). \
 | 
				
			||||||
 | 
					                    The default is to print the sets in list format (for example 0,1).",
 | 
				
			||||||
 | 
					                )
 | 
				
			||||||
 | 
					                .required(false),
 | 
				
			||||||
 | 
					        )
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user