aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/src/main_loop/handlers.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/main_loop/handlers.rs b/crates/rust-analyzer/src/main_loop/handlers.rs
index be8688bc3..8d7baa14f 100644
--- a/crates/rust-analyzer/src/main_loop/handlers.rs
+++ b/crates/rust-analyzer/src/main_loop/handlers.rs
@@ -821,8 +821,8 @@ pub fn handle_code_lens(
821 // Gather runnables 821 // Gather runnables
822 for runnable in world.analysis().runnables(file_id)? { 822 for runnable in world.analysis().runnables(file_id)? {
823 let title = match &runnable.kind { 823 let title = match &runnable.kind {
824 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶\u{fe0e}Run Test", 824 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶\u{fe0e} Run Test",
825 RunnableKind::DocTest { .. } => "▶\u{fe0e}Run Doctest", 825 RunnableKind::DocTest { .. } => "▶\u{fe0e} Run Doctest",
826 RunnableKind::Bench { .. } => "Run Bench", 826 RunnableKind::Bench { .. } => "Run Bench",
827 RunnableKind::Bin => { 827 RunnableKind::Bin => {
828 // Do not suggest binary run on other target than binary 828 // Do not suggest binary run on other target than binary