From 02e9f4d941fe0d896a8b59b14dee596384dfa080 Mon Sep 17 00:00:00 2001 From: Brian Antonelli Date: Wed, 20 Feb 2019 22:52:59 -0500 Subject: [PATCH] Doc fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed3c1588..9436c3f1 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ However, it is unlikely that you will encounter deflated data outside of any arc So, in case of GZip archive you should use: ```swift -let decompressedData = try? GzipArchive.unarchive(archiveData: data) +let decompressedData = try? GzipArchive.unarchive(archive: data) ``` ### Handling Errors