From 2119168eeee4ff8a8b12505755611e00fe6b96cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Izaguirre?= Date: Mon, 10 Feb 2025 16:44:10 +0100 Subject: [PATCH] fix(doc): typo on example code (#162) thanks --- miniz_oxide/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniz_oxide/Readme.md b/miniz_oxide/Readme.md index 6c177b0..6ef5c3a 100644 --- a/miniz_oxide/Readme.md +++ b/miniz_oxide/Readme.md @@ -25,7 +25,7 @@ Simple compression/decompression: ```rust use miniz_oxide::deflate::compress_to_vec; -use miniz_oxide::inflate::decompress_to_vec; +use miniz_oxide::inflate::decompress_to_vec_with_limit; fn roundtrip(data: &[u8]) { // Compress the input