From 9680e4eeb29d7b69034bce4798275308e657570a Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Tue, 7 Mar 2023 14:55:46 +0100 Subject: [PATCH] cmd, doc: Style fixes https://github.com/containers/toolbox/pull/1254 --- doc/toolbox-create.1.md | 2 +- doc/toolbox-init-container.1.md | 2 +- src/cmd/initContainer.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/toolbox-create.1.md b/doc/toolbox-create.1.md index aec12e9..e00999d 100644 --- a/doc/toolbox-create.1.md +++ b/doc/toolbox-create.1.md @@ -68,7 +68,7 @@ and grants it `sudo` and `root` access. Crucial configuration files, such as `/etc/host.conf`, `/etc/hosts`, `/etc/localtime`, `/etc/resolv.conf` and `/etc/timezone`, inside the container are kept synchronized with the host. The entry point also bind mounts various -subsets of the host's filesystem hierarchy to their corresponding locations +subsets of the host's file system hierarchy to their corresponding locations inside the container to provide seamless integration with the host. This includes `/run/libvirt`, `/run/systemd/journal`, `/run/udev/data`, `/var/lib/libvirt`, `/var/lib/systemd/coredump`, `/var/log/journal` and others. diff --git a/doc/toolbox-init-container.1.md b/doc/toolbox-init-container.1.md index 45c9a77..5f12394 100644 --- a/doc/toolbox-init-container.1.md +++ b/doc/toolbox-init-container.1.md @@ -38,7 +38,7 @@ and grants it `sudo` and `root` access. Crucial configuration files, such as `/etc/host.conf`, `/etc/hosts`, `/etc/localtime`, `/etc/resolv.conf` and `/etc/timezone`, inside the container are kept synchronized with the host. The entry point also bind mounts various -subsets of the host's filesystem hierarchy to their corresponding locations +subsets of the host's file system hierarchy to their corresponding locations inside the container to provide seamless integration with the host. This includes `/run/libvirt`, `/run/systemd/journal`, `/run/udev/data`, `/var/lib/libvirt`, `/var/lib/systemd/coredump`, `/var/log/journal` and others. diff --git a/src/cmd/initContainer.go b/src/cmd/initContainer.go index 465ac06..be01a1b 100644 --- a/src/cmd/initContainer.go +++ b/src/cmd/initContainer.go @@ -523,7 +523,7 @@ func mountBind(containerPath, source, flags string) error { } // redirectPath serves for creating symbolic links for crucial system -// configuration files to their counterparts on the host's filesystem. +// configuration files to their counterparts on the host's file system. // // containerPath and target must be absolute paths //