doc spelling

This commit is contained in:
Harald Hoyer 2019-03-05 13:28:53 +01:00
parent deaaf4ce9f
commit 15f983ce55

View file

@ -144,8 +144,8 @@
//! assert!(e.root_cause().is_some()); //! assert!(e.root_cause().is_some());
//! //!
//! if let Some(e) = e.root_cause() { //! if let Some(e) = e.root_cause() {
//! let ioerror = e.downcast_ref::<io::Error>().unwrap(); //! let io_error = e.downcast_ref::<io::Error>().unwrap();
//! eprintln!("\nThe root cause was: std::io::Error: {:#?}", ioerror); //! eprintln!("\nThe root cause was: std::io::Error: {:#?}", io_error);
//! } //! }
//! //!
//! #[cfg(not(windows))] //! #[cfg(not(windows))]