diff options
author | Michael Davis | 2022-02-14 23:23:35 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-10 08:31:57 +0000 |
commit | 8081e9f0520819309fef9a3df7cad8df24126a28 (patch) | |
tree | ae492e5238c2fe9e52476936dc705877a5f8e261 /helix-core | |
parent | 00b2d616eb6e35f4223e97beced0226cd146b92b (diff) |
replace all submodule documentation with flags documentation
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/config.rs b/helix-core/src/config.rs index 5bd16abd..d4ebee1f 100644 --- a/helix-core/src/config.rs +++ b/helix-core/src/config.rs @@ -25,7 +25,7 @@ pub fn user_lang_config() -> Result<toml::Value, toml::de::Error> { pub fn default_syntax_loader() -> crate::syntax::Configuration { default_lang_config() .try_into() - .expect("Could not serialize built-in language.toml") + .expect("Could not serialize built-in languages.toml") } /// Syntax configuration loader based on user configured languages.toml. pub fn user_syntax_loader() -> Result<crate::syntax::Configuration, toml::de::Error> { |