diff options
author | Alexis Mousset | 2023-09-10 20:31:12 +0000 |
---|---|---|
committer | GitHub | 2023-09-10 20:31:12 +0000 |
commit | 83ac53a1090e90bb36376dcf5713fac8e1cf66fd (patch) | |
tree | 642686ff06c6115d9915b7583ae7cf6357063ce4 /helix-core | |
parent | 6f3a6575dc9f4f9390cdfa5b56f5a0d182775ca2 (diff) |
Fix various typos (#8233)
Diffstat (limited to 'helix-core')
-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 bf167c28..881b4509 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -962,7 +962,7 @@ impl Syntax { let res = syntax.update(source, source, &ChangeSet::new(source)); if res.is_err() { - log::error!("TS parser failed, disabeling TS for the current buffer: {res:?}"); + log::error!("TS parser failed, disabling TS for the current buffer: {res:?}"); return None; } Some(syntax) |