Skip to content

Commit 51c1140

Browse files
Merge pull request #21370 from edsantiago/manpage_minor
[CI:DOCS] minor man page cleanup
2 parents 36c7789 + 7dcbc75 commit 51c1140

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/source/markdown/podman-kube-play.1.md.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ $ cat demo.yml | podman kube play -
283283
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
284284
```
285285

286-
Teardown the pod and containers as described in the specified YAML file.
286+
Tear down the pod and containers as described in the specified YAML file.
287287
```
288288
$ podman kube play --down demo.yml
289289
Pods stopped:
@@ -292,7 +292,7 @@ Pods removed:
292292
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
293293
```
294294

295-
Provide multiple configmaps files as sources for environment variables within the specified pods and containers.
295+
Provide multiple configmap files as sources for environment variables within the specified pods and containers.
296296
```
297297
$ podman kube play demo.yml --configmap configmap-foo.yml,configmap-bar.yml
298298
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
@@ -301,7 +301,7 @@ $ podman kube play demo.yml --configmap configmap-foo.yml --configmap configmap-
301301
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
302302
```
303303

304-
Create a pod connected to two networks with a static ip.
304+
Create a pod connected to two networks with a static ip on each.
305305
```
306306
$ podman kube play demo.yml --network net1:ip=10.89.1.5 --network net2:ip=10.89.10.10
307307
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6

docs/source/markdown/podman-load.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Storing signatures
6767
Loaded image: registry.fedoraproject.org/fedora:latest
6868
```
6969

70-
Create an image from stdin using a piped.
70+
Create an image from stdin using a pipe.
7171
```
7272
$ cat fedora.tar | podman load
7373
Getting image source signatures

docs/source/markdown/podman-login.1.md.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Password:
9191
Login Succeeded!
9292
```
9393

94-
Add login credentials as a Podman Secret for the specified registry to the default authorization file.
94+
Add login credentials using a Podman secret for the password.
9595
```
9696
$ echo -n MySecret! | podman secret create secretname -
9797
a0ad54df3c97cf89d5ca6193c

docs/source/markdown/podman-pod-clone.1.md.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ d0cf1f782e2ed67e8c0050ff92df865a039186237a4df24d7acba5b1fa8cc6e7
113113
6b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
114114
```
115115

116-
Clone and remove the specified pod to a new pod modifying its cpus.
116+
Clone and remove the specified pod to a new pod, modifying its cpus.
117117
```
118118
# podman pod clone --destroy --cpus=5 d0cf1
119119
6b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584

docs/source/markdown/podman-wait.1.md.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ $ podman wait --latest
5353
0
5454
```
5555

56-
Wait up to 2 seconds the specified container to exit.
56+
Wait for the container to exit, checking every two seconds.
5757
```
5858
$ podman wait --interval 2s mywebserver
5959
0
6060
```
6161

62-
Wait for the specified container to exit with a failure.
62+
Wait for the container by ID. This container exits with error status 1:
6363
```
6464
$ podman wait 860a4b23
6565
1
@@ -72,7 +72,7 @@ $ podman wait mywebserver myftpserver
7272
125
7373
```
7474

75-
Wait for does-not-exist container to exit, but do not fail if container does not exist.
75+
Wait for the named container to exit, but do not fail if the container does not exist.
7676
```
7777
$ podman wait --ignore does-not-exist
7878
-1

0 commit comments

Comments
 (0)