diff options
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 63ca424e..42c275d3 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -194,7 +194,7 @@ impl LanguageConfiguration { let language = get_language_name(self.language_id).to_ascii_lowercase(); let toml = load_runtime_file(&language, "indents.toml").ok()?; - toml::from_slice(&toml.as_bytes()).ok() + toml::from_slice(toml.as_bytes()).ok() }) .as_ref() } |