Fixed test in dcb/src/lib.rs

This commit is contained in:
Filipe Rodrigues 2021-01-09 13:50:12 +00:00
parent 2f4aea7eec
commit 9dd35a19a7

View File

@ -20,7 +20,7 @@
//! ```no_run
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # use std::fs::File;
//! let mut game_file = dcb::GameFile::from_reader( File::open("Digimon Digital Card Battle.bin")? )?;
//! let mut game_file = dcb_io::GameFile::from_reader( File::open("Digimon Digital Card Battle.bin")? )?;
//! let card_table = dcb::CardTable::deserialize(&mut game_file)?;
//! println!("Card table: {:?}", card_table);
//! # Ok(())