From cabd5528e22ee9b60d44f8911f30709e42272d07 Mon Sep 17 00:00:00 2001 From: Steven Burgess Date: Tue, 11 Nov 2014 18:01:08 -0500 Subject: [PATCH] Fix comment to match the arg name Signed-off-by: Steven Burgess --- archive/archive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive/archive.go b/archive/archive.go index d8f34d9..530ea30 100644 --- a/archive/archive.go +++ b/archive/archive.go @@ -455,7 +455,7 @@ func TarWithOptions(srcPath string, options *TarOptions) (io.ReadCloser, error) } // Untar reads a stream of bytes from `archive`, parses it as a tar archive, -// and unpacks it into the directory at `path`. +// and unpacks it into the directory at `dest`. // The archive may be compressed with one of the following algorithms: // identity (uncompressed), gzip, bzip2, xz. // FIXME: specify behavior when target path exists vs. doesn't exist.