Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/lib.rs')
| -rw-r--r-- | crates/ide/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/lib.rs b/crates/ide/src/lib.rs index 396e893bf9..c2412254ef 100644 --- a/crates/ide/src/lib.rs +++ b/crates/ide/src/lib.rs @@ -311,7 +311,7 @@ impl Analysis { pub fn join_lines(&self, config: &JoinLinesConfig, frange: FileRange) -> Cancellable<TextEdit> { self.with_db(|db| { let parse = db.parse(frange.file_id); - join_lines::join_lines(&config, &parse.tree(), frange.range) + join_lines::join_lines(config, &parse.tree(), frange.range) }) } |