diff options
author | Karthik Elango <kelango@redhat.com> | 2022-06-02 14:30:41 -0400 |
---|---|---|
committer | Karthik Elango <kelango@redhat.com> | 2022-06-02 14:58:39 -0400 |
commit | 9a34b88c9a7cd131e5ce26374f84a5ded5d5d6d8 (patch) | |
tree | 81052ae5880eb057c97e8ae6457e25e50bfd36bc /cmd/podman/common | |
parent | 95888735e320f57e7e12d4443a94ade42e458c5b (diff) | |
download | podman-9a34b88c9a7cd131e5ce26374f84a5ded5d5d6d8.tar.gz podman-9a34b88c9a7cd131e5ce26374f84a5ded5d5d6d8.tar.bz2 podman-9a34b88c9a7cd131e5ce26374f84a5ded5d5d6d8.zip |
changed megabyte to mebibyte
In podman run --help, the message said megabyte, gigabyte, etc. In reality podman takes mebibytes, gibibytes, etc.
[CI:DOCS]
Signed-off-by: Karthik Elango <kelango@redhat.com>
Diffstat (limited to 'cmd/podman/common')
-rw-r--r-- | cmd/podman/common/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go index 886c10cb5..f89035be3 100644 --- a/cmd/podman/common/create.go +++ b/cmd/podman/common/create.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/cobra" ) -const sizeWithUnitFormat = "(format: `<number>[<unit>]`, where unit = b (bytes), k (kilobytes), m (megabytes), or g (gigabytes))" +const sizeWithUnitFormat = "(format: `<number>[<unit>]`, where unit = b (bytes), k (kibibytes), m (mebibytes), or g (gibibytes))" var containerConfig = registry.PodmanConfig() |