mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
env: fix some format error
This commit is contained in:
parent
1db97834ec
commit
3d4cea1105
2 changed files with 2 additions and 2 deletions
2
src/uu/env/env.md
vendored
2
src/uu/env/env.md
vendored
|
@ -1,7 +1,7 @@
|
|||
# env
|
||||
|
||||
```
|
||||
{} [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
|
||||
env [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
|
||||
```
|
||||
|
||||
|
||||
|
|
2
src/uu/env/src/env.rs
vendored
2
src/uu/env/src/env.rs
vendored
|
@ -23,7 +23,7 @@ use std::os::unix::process::ExitStatusExt;
|
|||
use std::process;
|
||||
use uucore::display::Quotable;
|
||||
use uucore::error::{UClapError, UResult, USimpleError, UUsageError};
|
||||
use uucore::{format_usage, show_warning, help_about, help_section, help_usage};
|
||||
use uucore::{format_usage, help_about, help_section, help_usage, show_warning};
|
||||
|
||||
const ABOUT: &str = help_about!("env.md");
|
||||
const USAGE: &str = help_usage!("env.md");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue