diff options
author | Radostin Stoyanov <rstoyanov1@gmail.com> | 2019-10-26 21:54:51 +0100 |
---|---|---|
committer | Radostin Stoyanov <rstoyanov1@gmail.com> | 2019-11-02 01:44:22 +0000 |
commit | 95bc917b49dc3e6a98d7c0d347a682804cd3e68d (patch) | |
tree | fa34fdb66bcc97fdb33be460fdea55e4d8f11603 | |
parent | 82381072e166f635d9879346ac73c1140709f50f (diff) | |
download | podman-95bc917b49dc3e6a98d7c0d347a682804cd3e68d.tar.gz podman-95bc917b49dc3e6a98d7c0d347a682804cd3e68d.tar.bz2 podman-95bc917b49dc3e6a98d7c0d347a682804cd3e68d.zip |
runtime: Fix typo
Signed-off-by: Radostin Stoyanov <rstoyanov1@gmail.com>
-rw-r--r-- | pkg/adapter/runtime.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/adapter/runtime.go b/pkg/adapter/runtime.go index 4f70e90f9..81a43853c 100644 --- a/pkg/adapter/runtime.go +++ b/pkg/adapter/runtime.go @@ -338,7 +338,7 @@ func (r *LocalRuntime) SaveImage(ctx context.Context, c *cliconfig.SaveValues) e return newImage.Save(ctx, source, c.Format, c.Output, additionalTags, c.Quiet, c.Compress) } -// LoadImage is a wrapper function for libpod PruneVolumes +// LoadImage is a wrapper function for libpod LoadImage func (r *LocalRuntime) LoadImage(ctx context.Context, name string, cli *cliconfig.LoadValues) (string, error) { var ( writer io.Writer |