diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-05-05 20:36:53 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-05 20:36:53 +0100 |
commit | d38741f681c173a96e991dc3c213d4c85dc5a8af (patch) | |
tree | 4a34a03a160441b981aa5acfb8928f5ffe20fbfb /crates/ra_ide/src/typing | |
parent | a4778ddb7a00f552a8e653bbf56ae9fd69cfe1d3 (diff) | |
parent | 3908fad1fe02efedc810d7bd8f765b1434684cef (diff) |
Merge #4327
4327: Refactor assists r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/typing')
-rw-r--r-- | crates/ra_ide/src/typing/on_enter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/typing/on_enter.rs b/crates/ra_ide/src/typing/on_enter.rs index 30c8c5572..725237464 100644 --- a/crates/ra_ide/src/typing/on_enter.rs +++ b/crates/ra_ide/src/typing/on_enter.rs | |||
@@ -44,7 +44,7 @@ pub(crate) fn on_enter(db: &RootDatabase, position: FilePosition) -> Option<Sour | |||
44 | 44 | ||
45 | Some( | 45 | Some( |
46 | SourceChange::source_file_edit( | 46 | SourceChange::source_file_edit( |
47 | "on enter", | 47 | "On enter", |
48 | SourceFileEdit { edit, file_id: position.file_id }, | 48 | SourceFileEdit { edit, file_id: position.file_id }, |
49 | ) | 49 | ) |
50 | .with_cursor(FilePosition { offset: cursor_position, file_id: position.file_id }), | 50 | .with_cursor(FilePosition { offset: cursor_position, file_id: position.file_id }), |