diff --git a/src/npz.rs b/src/npz.rs index 19fdaed..5681ceb 100644 --- a/src/npz.rs +++ b/src/npz.rs @@ -105,11 +105,9 @@ impl NpzWriter { /// Creates a new `.npz` file with the specified options. /// - /// This allows you to use a custom compression method, such as [`CompressionMethod::Zstd`] or - /// set other options. + /// This allows you to use a custom compression method, such as zstd, or set other options. /// - /// Make sure to enable the relevant features of the `zip` crate to use - /// [`CompressionMethod::Zstd`] or other features. + /// Make sure to enable the relevant features of the `zip` crate. pub fn new_with_options(writer: W, options: SimpleFileOptions) -> NpzWriter { NpzWriter { zip: ZipWriter::new(writer),