env: fix some format error

This commit is contained in:
wuseyu 2023-03-07 17:20:35 +08:00
parent 1db97834ec
commit 3d4cea1105
2 changed files with 2 additions and 2 deletions

2
src/uu/env/env.md vendored
View file

@ -1,7 +1,7 @@
# env
```
{} [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
env [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]
```

View file

@ -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");