]> git.lizzy.rs Git - rust.git/commitdiff
Add blank lines for readability
authorAleksey Kladov <aleksey.kladov@gmail.com>
Wed, 18 Dec 2019 13:52:58 +0000 (14:52 +0100)
committerAleksey Kladov <aleksey.kladov@gmail.com>
Wed, 18 Dec 2019 15:00:35 +0000 (16:00 +0100)
crates/ra_ide/src/goto_definition.rs

index bee8e9df28ef18d8cc9faa99d90e77d23c64aea3..3b4d89e3e1ade79e73c56ae3208039877db8aebb 100644 (file)
@@ -285,8 +285,10 @@ fn goto_definition_resolves_correct_name() {
             mod a;
             mod b;
             enum E { X(Foo<|>) }
+
             //- /a.rs
             struct Foo;
+
             //- /b.rs
             struct Foo;
             ",
@@ -300,6 +302,7 @@ fn goto_definition_works_for_module_declaration() {
             "
             //- /lib.rs
             mod <|>foo;
+
             //- /foo.rs
             // empty
             ",
@@ -310,6 +313,7 @@ fn goto_definition_works_for_module_declaration() {
             "
             //- /lib.rs
             mod <|>foo;
+
             //- /foo/mod.rs
             // empty
             ",