diff --git a/src/lib.rs b/src/lib.rs index 22c7d127..a8e56339 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -87,7 +87,7 @@ //! //! To create a new random (V4) UUID and print it out in hexadecimal form: //! -//! ```ignore,rust +//! ```rust //! // Note that this requires the `v4` feature enabled in the uuid crate. //! //! use uuid::Uuid; @@ -95,7 +95,7 @@ //! fn main() { //! # #[cfg(feature = "v4")] { //! let my_uuid = Uuid::new_v4(); -//! println!("{}", my_uuid); +//! println!("{}", my_uuid) //! # } //! } //! ```