Skip to content

Commit

Permalink
docs: fix typo (#142)
Browse files Browse the repository at this point in the history
"it's" with an apostrophe is a contraction of "it is" or "it has", and "its" without an apostrophe is the possessive form of "it". It should be "on its own" since the intended meaning is not "on it is own".
  • Loading branch information
eventualbuddha committed Jan 7, 2024
1 parent ee29e37 commit 6e3e813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniz_oxide/Readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# miniz_oxide

A fully safe, pure rust replacement for the [miniz](https://github.com/richgel999/miniz) DEFLATE/zlib encoder/decoder.
The main intention of this crate is to be used as a back-end for the [flate2](https://github.com/alexcrichton/flate2-rs), but it can also be used on it's own. Using flate2 with the ```rust_backend``` feature provides an easy to use streaming API for miniz_oxide.
The main intention of this crate is to be used as a back-end for the [flate2](https://github.com/alexcrichton/flate2-rs), but it can also be used on its own. Using flate2 with the ```rust_backend``` feature provides an easy to use streaming API for miniz_oxide.

The library is fully [no_std](https://docs.rust-embedded.org/book/intro/no-std.html). By default, the `with-alloc` feature is enabled, which requires the use of the `alloc` and `collection` crates as it allocates memory.

Expand Down

0 comments on commit 6e3e813

Please sign in to comment.