Skip to content

Commit 3cb78ff

Browse files
committed
Cleaned up trailing whitespace for tidy::files_are_tidy
1 parent 3203cb1 commit 3cb78ff

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

crates/ide-assists/src/handlers/extract_module.rs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1606,49 +1606,49 @@ mod modname {
16061606
r"
16071607
$0/// A documented function
16081608
fn documented_fn() {}
1609-
1609+
16101610
// A commented function with a #[] attribute macro
16111611
#[cfg(test)]
16121612
fn attribute_fn() {}
1613-
1613+
16141614
// A normally commented function
16151615
fn normal_fn() {}
1616-
1616+
16171617
/// A documented Struct
16181618
struct DocumentedStruct {
16191619
// Normal field
16201620
x: i32,
1621-
1621+
16221622
/// Documented field
16231623
y: i32,
1624-
1624+
16251625
// Macroed field
16261626
#[cfg(test)]
16271627
z: i32,
16281628
}
1629-
1629+
16301630
// A macroed Struct
16311631
#[cfg(test)]
16321632
struct MacroedStruct {
16331633
// Normal field
16341634
x: i32,
1635-
1635+
16361636
/// Documented field
16371637
y: i32,
1638-
1638+
16391639
// Macroed field
16401640
#[cfg(test)]
16411641
z: i32,
16421642
}
1643-
1643+
16441644
// A normal Struct
16451645
struct NormalStruct {
16461646
// Normal field
16471647
x: i32,
1648-
1648+
16491649
/// Documented field
16501650
y: i32,
1651-
1651+
16521652
// Macroed field
16531653
#[cfg(test)]
16541654
z: i32,
@@ -1660,10 +1660,10 @@ mod modname {
16601660
// A macroed type
16611661
#[cfg(test)]
16621662
type MacroedType = i32;
1663-
1663+
16641664
/// A module to move
16651665
mod module {}
1666-
1666+
16671667
/// An impl to move
16681668
impl NormalStruct {
16691669
/// A method
@@ -1688,49 +1688,49 @@ mod modname {
16881688
mod modname {
16891689
/// A documented function
16901690
pub(crate) fn documented_fn() {}
1691-
1691+
16921692
// A commented function with a #[] attribute macro
16931693
#[cfg(test)]
16941694
pub(crate) fn attribute_fn() {}
1695-
1695+
16961696
// A normally commented function
16971697
pub(crate) fn normal_fn() {}
1698-
1698+
16991699
/// A documented Struct
17001700
pub(crate) struct DocumentedStruct {
17011701
// Normal field
17021702
pub(crate) x: i32,
1703-
1703+
17041704
/// Documented field
17051705
pub(crate) y: i32,
1706-
1706+
17071707
// Macroed field
17081708
#[cfg(test)]
17091709
pub(crate) z: i32,
17101710
}
1711-
1711+
17121712
// A macroed Struct
17131713
#[cfg(test)]
17141714
pub(crate) struct MacroedStruct {
17151715
// Normal field
17161716
pub(crate) x: i32,
1717-
1717+
17181718
/// Documented field
17191719
pub(crate) y: i32,
1720-
1720+
17211721
// Macroed field
17221722
#[cfg(test)]
17231723
pub(crate) z: i32,
17241724
}
1725-
1725+
17261726
// A normal Struct
17271727
pub(crate) struct NormalStruct {
17281728
// Normal field
17291729
pub(crate) x: i32,
1730-
1730+
17311731
/// Documented field
17321732
pub(crate) y: i32,
1733-
1733+
17341734
// Macroed field
17351735
#[cfg(test)]
17361736
pub(crate) z: i32,

0 commit comments

Comments
 (0)