From f2a4dbaf7f3fa064fb4480cdab31fe18f5501f34 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 7 Feb 2024 18:50:11 -0500 Subject: [PATCH] Fix typo in `mark_language_loaded` doc comment (#7533) This PR fixes a small typo in the `mark_language_loaded` doc comment. Release Notes: - N/A --- crates/language/src/language.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/language/src/language.rs b/crates/language/src/language.rs index eee05ea8e2..c3c76b11ba 100644 --- a/crates/language/src/language.rs +++ b/crates/language/src/language.rs @@ -1370,7 +1370,7 @@ impl LanguageRegistryState { *self.subscription.0.borrow_mut() = (); } - /// Mark the given language a having been loaded, so that the + /// Mark the given language as having been loaded, so that the /// language registry won't try to load it again. fn mark_language_loaded(&mut self, id: AvailableLanguageId) { for language in &mut self.available_languages {