Skip to content

Commit 2290cf2

Browse files
committed
rel(0.2.2): doc typo
1 parent 0176dd6 commit 2290cf2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chd-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chd"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
55
edition = "2021"
66
description = "Rust implementation of the CHD File Format"

chd-rs/src/chdfile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl<F: Read + Seek> Chd<F> {
3939
/// If the CHD file does not require a parent, and a parent is provided, returns
4040
/// [`Error::InvalidParameter`](crate::Error::InvalidParameter).
4141
/// If no parent CHD is provided and the file requires a parent, then the presence of the parent
42-
/// will not be immediately violated. However, calls to [`read_hunk_in`](crate::Hunk::read_hunk_in)
42+
/// will not be immediately validated. However, calls to [`read_hunk_in`](crate::Hunk::read_hunk_in)
4343
/// will fail with [`Error::RequiresParent`](crate::Error::RequiresParent) when a hunk is read that
4444
/// refers to the parent CHD.
4545
pub fn open(mut file: F, parent: Option<Box<Chd<F>>>) -> Result<Chd<F>> {

0 commit comments

Comments
 (0)