summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/tabs_in_doc_comments.fixed
blob: 21020182c241b320882187f516e111b57aea5a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//@run-rustfix

#![warn(clippy::tabs_in_doc_comments)]
#[allow(dead_code)]

///
/// Struct to hold two strings:
///     - first        one
///     - second    one
pub struct DoubleString {
    ///
    ///     - First String:
    ///         - needs to be inside here
    first_string: String,
    ///
    ///     - Second String:
    ///         - needs to be inside here
    second_string: String,
}

/// This is main
fn main() {}