diff options
author | Karthik Elango <kelango@redhat.com> | 2022-06-02 14:30:41 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-06-14 16:12:10 -0400 |
commit | ec0c94a2ffc6c906959ccdfb0152a9a0957d6253 (patch) | |
tree | 08c125e74b8892e1e91128a575ee40021eeb29de /cmd | |
parent | 15040dc708352585051252c396adc11a1fd960e6 (diff) | |
download | podman-ec0c94a2ffc6c906959ccdfb0152a9a0957d6253.tar.gz podman-ec0c94a2ffc6c906959ccdfb0152a9a0957d6253.tar.bz2 podman-ec0c94a2ffc6c906959ccdfb0152a9a0957d6253.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')
-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 d28becc8a..3263c5874 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() |