1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

false,true: Resolve formatting nit in About

This commit is contained in:
Andreas Molzer 2022-02-01 19:53:25 +01:00
parent 23a544c485
commit c6d5eccf6c
2 changed files with 10 additions and 10 deletions

View file

@ -8,12 +8,12 @@ use clap::{App, AppSettings, Arg};
use std::io::Write; use std::io::Write;
use uucore::error::{set_exit_code, UResult}; use uucore::error::{set_exit_code, UResult};
static ABOUT: &str = " static ABOUT: &str = "\
Returns false, an unsuccessful exit status. Returns false, an unsuccessful exit status.
Immediately returns with the exit status `1`. When invoked with one of the recognized options it Immediately returns with the exit status `1`. When invoked with one of the recognized options it
will try to write the help or version text. Any IO error during this operation is diagnosed, yet will try to write the help or version text. Any IO error during this operation is diagnosed, yet
the program will also return `1`. the program will also return `1`.
"; ";
#[uucore::main] #[uucore::main]

View file

@ -8,12 +8,12 @@ use clap::{App, AppSettings, Arg};
use std::io::Write; use std::io::Write;
use uucore::error::{set_exit_code, UResult}; use uucore::error::{set_exit_code, UResult};
static ABOUT: &str = " static ABOUT: &str = "\
Returns true, a successful exit status. Returns true, a successful exit status.
Immediately returns with the exit status `0`, except when invoked with one of the recognized Immediately returns with the exit status `0`, except when invoked with one of the recognized
options. In those cases it will try to write the help or version text. Any IO error during this options. In those cases it will try to write the help or version text. Any IO error during this
operation causes the program to return `1` instead. operation causes the program to return `1` instead.
"; ";
#[uucore::main] #[uucore::main]