diff --git a/src/lib.rs b/src/lib.rs index 902c51a..91b1bca 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -144,8 +144,8 @@ //! assert!(e.root_cause().is_some()); //! //! if let Some(e) = e.root_cause() { -//! let ioerror = e.downcast_ref::().unwrap(); -//! eprintln!("\nThe root cause was: std::io::Error: {:#?}", ioerror); +//! let io_error = e.downcast_ref::().unwrap(); +//! eprintln!("\nThe root cause was: std::io::Error: {:#?}", io_error); //! } //! //! #[cfg(not(windows))]