Remove missing docs warning for now
This commit is contained in:
parent
058f39c180
commit
f11d676641
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
||||||
#![warn(missing_docs)]
|
|
||||||
//! The `language` crate provides a large chunk of Zed's language-related
|
//! 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).
|
//! features (the other big contributors being project and lsp crates that revolve around LSP features).
|
||||||
//! Namely, this crate:
|
//! Namely, this crate:
|
||||||
|
@ -389,7 +388,7 @@ pub struct CodeLabel {
|
||||||
pub struct LanguageConfig {
|
pub struct LanguageConfig {
|
||||||
/// Human-readable name of the language.
|
/// Human-readable name of the language.
|
||||||
pub name: Arc<str>,
|
pub name: Arc<str>,
|
||||||
// The name of the grammar in a WASM bundle.
|
// The name of the grammar in a WASM bundle (experimental).
|
||||||
pub grammar_name: Option<Arc<str>>,
|
pub grammar_name: Option<Arc<str>>,
|
||||||
/// 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`.
|
/// 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<String>,
|
pub path_suffixes: Vec<String>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue