From b213458803cae3efdb97e609f07b34660df753ad Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 29 Jan 2024 02:56:50 +0900 Subject: [PATCH] Fix typo in copilot.rs (#6933) specifcially -> specifically Release Notes: - N/A --- crates/copilot/src/copilot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/copilot/src/copilot.rs b/crates/copilot/src/copilot.rs index 49fb46780f5cd95cb8e297b1b0258089461b4116..6345bdb794358e541028885d833fa24b0d196606 100644 --- a/crates/copilot/src/copilot.rs +++ b/crates/copilot/src/copilot.rs @@ -964,7 +964,7 @@ async fn get_copilot_lsp(http: Arc) -> anyhow::Result { let server_path = version_dir.join(SERVER_PATH); if fs::metadata(&server_path).await.is_err() { - // Copilot LSP looks for this dist dir specifcially, so lets add it in. + // Copilot LSP looks for this dist dir specifically, so lets add it in. let dist_dir = version_dir.join("dist"); fs::create_dir_all(dist_dir.as_path()).await?;