aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_flycheck/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-14 00:10:05 +0100
committerGitHub <[email protected]>2020-05-14 00:10:05 +0100
commit62730ae30db453f53eb0c37647b5c76058eafca0 (patch)
tree71caf8f1abdea2bd1de8be38e4595b7dac38ae85 /crates/ra_flycheck/src/lib.rs
parent530a35f3f949d70c53accede35fa561429585bc1 (diff)
parent2d0a9492362e47c51f389d586a43c81328be4670 (diff)
Merge #4452
4452: Use back ticks instead of single quotes around code r=matklad a=tspiteri Also, use back ticks instead of single quotes in `rustc_unescape_error_to_string` for `EE:UnclosedUnicodeEscape`. Co-authored-by: Trevor Spiteri <[email protected]>
Diffstat (limited to 'crates/ra_flycheck/src/lib.rs')
-rw-r--r--crates/ra_flycheck/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_flycheck/src/lib.rs b/crates/ra_flycheck/src/lib.rs
index 24af75c95..d5efb6ab3 100644
--- a/crates/ra_flycheck/src/lib.rs
+++ b/crates/ra_flycheck/src/lib.rs
@@ -157,7 +157,7 @@ impl FlycheckThread {
157 CheckEvent::Begin => { 157 CheckEvent::Begin => {
158 task_send 158 task_send
159 .send(CheckTask::Status(WorkDoneProgress::Begin(WorkDoneProgressBegin { 159 .send(CheckTask::Status(WorkDoneProgress::Begin(WorkDoneProgressBegin {
160 title: "Running 'cargo check'".to_string(), 160 title: "Running `cargo check`".to_string(),
161 cancellable: Some(false), 161 cancellable: Some(false),
162 message: None, 162 message: None,
163 percentage: None, 163 percentage: None,