diff options
author | Aleksey Kladov <[email protected]> | 2020-05-05 19:55:12 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-05-05 20:35:30 +0100 |
commit | 3908fad1fe02efedc810d7bd8f765b1434684cef (patch) | |
tree | bbb53074847af07a64eafb0cbea088f49a88f7ae /crates/ra_ide/src/typing | |
parent | df00da15c435f3105007146cbbfc9afc34ad311c (diff) |
Normalize naming of diagnostics
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 }), |