From 2c193b59defa3ea955cfec1d102af889034975a3 Mon Sep 17 00:00:00 2001 From: briantracy Date: Thu, 7 Sep 2023 21:11:13 -0700 Subject: [PATCH] Fix extremely minor typo in docker-run man page The latin phrase "vice versa" can be pronounced "vice-a-versa", but should not be rendered as such. Signed-off-by: briantracy --- man/docker-run.1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/docker-run.1.md b/man/docker-run.1.md index 6e9a50974e..bb57800de2 100644 --- a/man/docker-run.1.md +++ b/man/docker-run.1.md @@ -761,10 +761,10 @@ The `Z` option tells Docker to label the content with a private unshared label. Only the current container can use a private volume. By default bind mounted volumes are `private`. That means any mounts done -inside container will not be visible on host and vice-a-versa. One can change +inside container will not be visible on host and vice versa. One can change this behavior by specifying a volume mount propagation property. Making a volume `shared` mounts done under that volume inside container will be -visible on host and vice-a-versa. Making a volume `slave` enables only one +visible on host and vice versa. Making a volume `slave` enables only one way mount propagation and that is mounts done on host under that volume will be visible inside container but not the other way around.