From 129d7301efea99d7b01e67cf48bc55891532188e Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Sun, 7 Feb 2021 12:46:52 +0100 Subject: [PATCH] Note that `large_file()` requires ZIP64 support. --- src/write.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index 5291accc..f60a2eaf 100644 --- a/src/write.rs +++ b/src/write.rs @@ -151,8 +151,9 @@ impl FileOptions { /// Set whether the new file's compressed and uncompressed size is less than 4 GiB. /// - /// If set to `false` and the file exceeds the limit, an I/O error is thrown. If set to `true` - /// and the file does not exceed the limit, 20 B are wasted. The default is `false`. + /// If set to `false` and the file exceeds the limit, an I/O error is thrown. If set to `true`, + /// readers will require ZIP64 support and if the file does not exceed the limit, 20 B are + /// wasted. The default is `false`. pub fn large_file(mut self, large: bool) -> FileOptions { self.large_file = large; self