From 368906cdc80859bad5cf3b572d5dc57a0557d518 Mon Sep 17 00:00:00 2001 From: Cian Gallagher Date: Fri, 12 Aug 2022 19:26:02 +0100 Subject: [PATCH] DOCS: Fix typo in readme related to extracting contents of archive. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d9483a..f0f9921 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ for { #### Extract contents of archive to destination path ```go -err := a.Extract("/tmp/path") +_, err := a.Extract("/tmp/path") if err != nil { panic(err) }