File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chd"
3
- version = " 0.2.1 "
3
+ version = " 0.2.2 "
4
4
authors = [" Ronny Chan <ronny@ronnychan.ca>" ]
5
5
edition = " 2021"
6
6
description = " Rust implementation of the CHD File Format"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ impl<F: Read + Seek> Chd<F> {
39
39
/// If the CHD file does not require a parent, and a parent is provided, returns
40
40
/// [`Error::InvalidParameter`](crate::Error::InvalidParameter).
41
41
/// 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)
43
43
/// will fail with [`Error::RequiresParent`](crate::Error::RequiresParent) when a hunk is read that
44
44
/// refers to the parent CHD.
45
45
pub fn open ( mut file : F , parent : Option < Box < Chd < F > > > ) -> Result < Chd < F > > {
You can’t perform that action at this time.
0 commit comments