diff options
author | Simon Spöhel <simon.spoehel@open-infrastructure.net> | 2017-07-22 10:16:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-07-22 21:31:40 +0000 |
commit | f5a542f1a9bf95ee0403fda5c33eb78a5522d0e9 (patch) | |
tree | d1364521111a460bf83f1257c87cae17514d8b64 /share | |
parent | Adding myself to copyright notice in bash-completion. (diff) | |
download | compute-tools-f5a542f1a9bf95ee0403fda5c33eb78a5522d0e9.tar.xz compute-tools-f5a542f1a9bf95ee0403fda5c33eb78a5522d0e9.zip |
Fixing spelling typo in 'bandwidth'.
Signed-off-by: Simon Spöhel <simon.spoehel@open-infrastructure.net>
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 2 | ||||
-rw-r--r-- | share/man/container-limit.1.txt | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index f888bee..535599a 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -106,7 +106,7 @@ _container() ;; *) - opts="-n --name --blockio-device-weight --blockio-read-bandwith -b --blockio-weight --blockio-write-bandwith -c --cpu-quota --cpu-shares -m --memory-limit -t --tasks-max" + opts="-n --name --blockio-device-weight --blockio-read-bandwidth -b --blockio-weight --blockio-write-bandwidth -c --cpu-quota --cpu-shares -m --memory-limit -t --tasks-max" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; diff --git a/share/man/container-limit.1.txt b/share/man/container-limit.1.txt index f942fba..534bd76 100644 --- a/share/man/container-limit.1.txt +++ b/share/man/container-limit.1.txt @@ -47,14 +47,14 @@ The following container options are available: *--blockio-device-weight='DEVICE WEIGHT'*:: Specify device specific blockio weight, see systemd.resource-control(5). -*--blockio-read-bandwith='DEVICE BYTES'*:: - Specify device specific blockio read bandwith, see systemd.resource-control(5). +*--blockio-read-bandwidth='DEVICE BYTES'*:: + Specify device specific blockio read bandwidth, see systemd.resource-control(5). *-b, --blockio-weight='WEIGHT'*:: Specify general blockio weight, see systemd.resource-control(5). -*--blockio-write-bandwith='DEVICE BYTES'*:: - Specify device specific blockio write bandwith, see systemd.resource-control(5). +*--blockio-write-bandwidth='DEVICE BYTES'*:: + Specify device specific blockio write bandwidth, see systemd.resource-control(5). *-c, --cpu-quota='QUOTA'*:: Specify CPU quota, see systemd.resource-control(5). |