diff options
author | Aleksey Kladov <[email protected]> | 2018-12-21 08:08:43 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-21 08:08:43 +0000 |
commit | b7d8bf12622f25a3c96f50b4079132718ea404db (patch) | |
tree | b7d8a8e2127ffc8e9e2e8848d67368e6d8247635 /crates/ra_db | |
parent | f1fafeee02b88ac7186e479ec595f66d056f842c (diff) |
tweak canceled message
Diffstat (limited to 'crates/ra_db')
-rw-r--r-- | crates/ra_db/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_db/src/lib.rs b/crates/ra_db/src/lib.rs index 65fa3cbfa..0aca6f343 100644 --- a/crates/ra_db/src/lib.rs +++ b/crates/ra_db/src/lib.rs | |||
@@ -15,7 +15,7 @@ pub type Cancelable<T> = Result<T, Canceled>; | |||
15 | 15 | ||
16 | impl std::fmt::Display for Canceled { | 16 | impl std::fmt::Display for Canceled { |
17 | fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | 17 | fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
18 | fmt.write_str("Canceled") | 18 | fmt.write_str("canceled") |
19 | } | 19 | } |
20 | } | 20 | } |
21 | 21 | ||