Drop unnecessary comments

This commit is contained in:
Richard Feldman 2019-10-02 21:06:34 +03:00
parent 2c6975e908
commit c61b11e88f

View file

@ -106,7 +106,7 @@ mod test_format {
#[test] #[test]
fn single_def() { fn single_def() {
assert_formats_same(indoc!( assert_formats_same(indoc!(
r#"# comment to reset indentation r#"
x = 5 x = 5
42 42
@ -117,7 +117,7 @@ mod test_format {
#[test] #[test]
fn two_defs() { fn two_defs() {
assert_formats_same(indoc!( assert_formats_same(indoc!(
r#"# comment to reset indentation r#"
x = 5 x = 5
y = 10 y = 10
@ -129,7 +129,7 @@ mod test_format {
#[test] #[test]
fn record_destructuring() { fn record_destructuring() {
assert_formats_same(indoc!( assert_formats_same(indoc!(
r#"# comment to reset indentation r#"
{ x, y } = 5 { x, y } = 5
42 42