Skip to content

Commit

Permalink
Remove broken links from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jturner314 committed Sep 14, 2024
1 parent 84f8ebd commit 5b54dd0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/npz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,9 @@ impl<W: Write + Seek> NpzWriter<W> {

/// 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<W> {
NpzWriter {
zip: ZipWriter::new(writer),
Expand Down

0 comments on commit 5b54dd0

Please sign in to comment.