diff options
author | Benjamin Coenen <[email protected]> | 2020-05-17 10:09:38 +0100 |
---|---|---|
committer | Benjamin Coenen <[email protected]> | 2020-05-17 10:16:31 +0100 |
commit | 947f95193a52ebdda3f727500144fe1f6d292868 (patch) | |
tree | 584f1f519088c7088fc9d25f918550e70bb8c989 | |
parent | 03735be3174d195c3de53051dd7194283266368c (diff) |
fix doctest inside impl block #4449
Signed-off-by: Benjamin Coenen <[email protected]>
-rw-r--r-- | crates/ra_ide/src/runnables.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide/src/runnables.rs b/crates/ra_ide/src/runnables.rs index 009ea813a..72eced343 100644 --- a/crates/ra_ide/src/runnables.rs +++ b/crates/ra_ide/src/runnables.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | //! FIXME: write short doc here | 1 | //! FIXME: write short doc here |
2 | 2 | ||
3 | use hir::{AsAssocItem, HirDisplay, Semantics}; | 3 | use hir::{AsAssocItem, Semantics}; |
4 | use itertools::Itertools; | 4 | use itertools::Itertools; |
5 | use ra_ide_db::RootDatabase; | 5 | use ra_ide_db::RootDatabase; |
6 | use ra_syntax::{ | 6 | use ra_syntax::{ |
@@ -266,7 +266,7 @@ mod tests { | |||
266 | //- /lib.rs | 266 | //- /lib.rs |
267 | <|> //empty | 267 | <|> //empty |
268 | fn main() {} | 268 | fn main() {} |
269 | 269 | ||
270 | struct Data; | 270 | struct Data; |
271 | impl Data { | 271 | impl Data { |
272 | /// ``` | 272 | /// ``` |