summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/normalize_doc_attributes/true.rs
blob: 894c00a4dc058874ea069b3bc60ce8e2228b6e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// rustfmt-normalize_doc_attributes: true
// Normalize doc attributes

#![doc = " Example documentation"]

#[doc = " Example item documentation"]
pub enum Foo {}

#[doc = "        Lots of space"]
pub enum Bar {}

#[doc = "no leading space"]
pub mod FooBar {}