diff options
author | Miloslav Trmač <mitr@redhat.com> | 2020-02-07 02:32:01 +0100 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2020-02-07 23:36:01 +0100 |
commit | 5b5bacbd95fb4a87bdb294504621dba766aed626 (patch) | |
tree | a9808c7ef508fb4e34f8d7031b7fd5a542bd886f /libpod/image/image.go | |
parent | 972df82632bf0840ac84756306ef607ea5be72d8 (diff) | |
download | podman-5b5bacbd95fb4a87bdb294504621dba766aed626.tar.gz podman-5b5bacbd95fb4a87bdb294504621dba766aed626.tar.bz2 podman-5b5bacbd95fb4a87bdb294504621dba766aed626.zip |
Document an aspect of newFromStorage behavior
Should not change behavior.
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'libpod/image/image.go')
-rw-r--r-- | libpod/image/image.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/image/image.go b/libpod/image/image.go index f6792eeac..ddde1c8da 100644 --- a/libpod/image/image.go +++ b/libpod/image/image.go @@ -120,7 +120,7 @@ func (ir *Runtime) newImage(inputName string, img *storage.Image) *Image { } } -// newFromStorage creates a new image object from a storage.Image +// newFromStorage creates a new image object from a storage.Image. Its "input name" will be its ID. func (ir *Runtime) newFromStorage(img *storage.Image) *Image { return ir.newImage(img.ID, img) } |