From f11d676641d6a8260d23bcddd1a1e3bc344f54bc Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 18 Jan 2024 15:51:25 -0800 Subject: [PATCH] Remove missing docs warning for now --- crates/language/src/language.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/language/src/language.rs b/crates/language/src/language.rs index 534d313453..7d44250a0f 100644 --- a/crates/language/src/language.rs +++ b/crates/language/src/language.rs @@ -1,4 +1,3 @@ -#![warn(missing_docs)] //! The `language` crate provides a large chunk of Zed's language-related //! features (the other big contributors being project and lsp crates that revolve around LSP features). //! Namely, this crate: @@ -389,7 +388,7 @@ pub struct CodeLabel { pub struct LanguageConfig { /// Human-readable name of the language. pub name: Arc, - // The name of the grammar in a WASM bundle. + // The name of the grammar in a WASM bundle (experimental). pub grammar_name: Option>, /// Given a list of `LanguageConfig`'s, the language of a file can be determined based on the path extension matching any of the `path_suffixes`. pub path_suffixes: Vec,