mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
20 lines
363 B
Rust
20 lines
363 B
Rust
|
#![warn(clippy::tabs_in_doc_comments)]
|
||
|
|
||
|
///
|
||
|
/// 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() {}
|