about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-04-19 14:05:40 +0000
committerbors <bors@rust-lang.org>2023-04-19 14:05:40 +0000
commit2400b36a2ed40f68a26473f69ac208ba10d98af9 (patch)
tree9889f0faedcfe49d75c0fcb916396861a577ffcb /editors/code/src
parent112464fd6b97d7a7524f8ff2a642bfe267e8fa75 (diff)
parentbc7d84c3ce586f0976976d06305115085b63e53d (diff)
downloadrust-2400b36a2ed40f68a26473f69ac208ba10d98af9.tar.gz
rust-2400b36a2ed40f68a26473f69ac208ba10d98af9.zip
Auto merge of #14577 - jsoref:spelling, r=lnicola
Spelling

This PR corrects misspellings identified by the [check-spelling action](https://github.com/marketplace/actions/check-spelling).

The misspellings have been reported at https://github.com/jsoref/rust-analyzer/actions/runs/4699991040#summary-12751355796

The action reports that the changes in this PR would make it happy: https://github.com/jsoref/rust-analyzer/actions/runs/4699991284#summary-12751356293

closes #14567
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/run.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/run.ts b/editors/code/src/run.ts
index 35627e2fc6b..623fb102953 100644
--- a/editors/code/src/run.ts
+++ b/editors/code/src/run.ts
@@ -157,7 +157,7 @@ export async function createTask(runnable: ra.Runnable, config: Config): Promise
 
     cargoTask.presentationOptions.clear = true;
     // Sadly, this doesn't prevent focus stealing if the terminal is currently
-    // hidden, and will become revealed due to task exucution.
+    // hidden, and will become revealed due to task execution.
     cargoTask.presentationOptions.focus = false;
 
     return cargoTask;