From 05191026c9bef5ad972ebf6668c8d2ba6d0e481e Mon Sep 17 00:00:00 2001 From: Nils Lindemann Date: Sat, 25 Mar 2023 12:49:45 +0000 Subject: [PATCH] doc/toolbox-enter, doc/toolbox-run: Fix the default container examples The phrase 'using a custom image' is awkward because it makes it sound as if the image plays an important role in 'enter' and 'run'. That's not true. Also, titles are sweeter when they are shorter. https://github.com/containers/toolbox/pull/1281 Signed-off-by: Nils Lindemann --- doc/toolbox-enter.1.md | 4 ++-- doc/toolbox-run.1.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/toolbox-enter.1.md b/doc/toolbox-enter.1.md index daa9932..2e7b788 100644 --- a/doc/toolbox-enter.1.md +++ b/doc/toolbox-enter.1.md @@ -42,13 +42,13 @@ host. ## EXAMPLES -### Enter a toolbox container using the default image matching the host OS +### Enter the default toolbox container matching the host OS ``` $ toolbox enter ``` -### Enter a toolbox container using the default image for Fedora 36 +### Enter the default toolbox container for Fedora 36 ``` $ toolbox enter --distro fedora --release f36 diff --git a/doc/toolbox-run.1.md b/doc/toolbox-run.1.md index 5961641..2671049 100644 --- a/doc/toolbox-run.1.md +++ b/doc/toolbox-run.1.md @@ -85,13 +85,13 @@ $ toolbox run false; echo $? ## EXAMPLES -### Run ls inside a toolbox container using the default image matching the host OS +### Run ls inside the default toolbox container matching the host OS ``` $ toolbox run ls -la ``` -### Run emacs inside a toolbox container using the default image for Fedora 36 +### Run emacs inside the default toolbox container for Fedora 36 ``` $ toolbox run --distro fedora --release f36 emacs