diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-08-02 15:30:31 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-08-02 15:30:31 -0400 |
commit | 582a24dfed12da93a3a5e36ad269787b4ece93fc (patch) | |
tree | 92d00883eddad073af5eeb85c510e7a1b8dcecd8 /libpod/volume_inspect.go | |
parent | 610003ab0fbc21c5c2b3be980406c365f056d8ba (diff) | |
download | podman-582a24dfed12da93a3a5e36ad269787b4ece93fc.tar.gz podman-582a24dfed12da93a3a5e36ad269787b4ece93fc.tar.bz2 podman-582a24dfed12da93a3a5e36ad269787b4ece93fc.zip |
Fix typos
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/volume_inspect.go')
-rw-r--r-- | libpod/volume_inspect.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/volume_inspect.go b/libpod/volume_inspect.go index 893661a7a..87ed9d340 100644 --- a/libpod/volume_inspect.go +++ b/libpod/volume_inspect.go @@ -19,7 +19,7 @@ type InspectVolumeData struct { // CreatedAt is the date and time the volume was created at. This is not // stored for older Libpod volumes; if so, it will be omitted. CreatedAt time.Time `json:"CreatedAt,omitempty"` - // Status is presently unused and provided only for Docker compatability. + // Status is presently unused and provided only for Docker compatibility. // In the future it will be used to return information on the volume's // current state. Status map[string]string `json:"Status,omitempty"` @@ -27,7 +27,7 @@ type InspectVolumeData struct { // can be passed during volume creation to provide information for third // party tools. Labels map[string]string `json:"Labels"` - // Scope is unused and provided solely for Docker compatability. It is + // Scope is unused and provided solely for Docker compatibility. It is // unconditionally set to "local". Scope string `json:"Scope"` // Options is a set of options that were used when creating the volume. |