Fix typo in copilot.rs (#6933)

specifcially -> specifically

Release Notes:

- N/A
This commit is contained in:
Ikko Eltociear Ashimine 2024-01-29 02:56:50 +09:00 committed by GitHub
parent 4fc01163da
commit b213458803
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -964,7 +964,7 @@ async fn get_copilot_lsp(http: Arc<dyn HttpClient>) -> anyhow::Result<PathBuf> {
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?;