2018-03-08 18:28:49 -06:00
|
|
|
// rustfmt-normalize_comments: true
|
2019-05-10 08:22:52 -05:00
|
|
|
// rustfmt-format_code_in_doc_comments: true
|
2018-03-08 18:28:49 -06:00
|
|
|
|
|
|
|
//! ```rust
|
|
|
|
//! println!( "hello, world" );
|
|
|
|
//! ```
|
|
|
|
|
|
|
|
#![deny( missing_docs )]
|
2018-03-08 18:46:43 -06:00
|
|
|
|
|
|
|
//! ```rust
|
|
|
|
//! println!("hello, world");
|
|
|
|
|
|
|
|
#![deny( missing_docs )]
|