diff options
author | Michael Davis | 2022-03-11 03:28:34 +0000 |
---|---|---|
committer | GitHub | 2022-03-11 03:28:34 +0000 |
commit | 98851d1594e712c3a222fa6624b2aa89176464c6 (patch) | |
tree | c25cd8c8abb3ecfc291c15606d2e001a04a06f66 /helix-loader/src | |
parent | 37fed4de8001e92a7ebe8450263bc4f56a59e014 (diff) |
remove stray 'println!' from grammar building function (#1785)
Diffstat (limited to 'helix-loader/src')
-rw-r--r-- | helix-loader/src/grammar.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-loader/src/grammar.rs b/helix-loader/src/grammar.rs index dc327498..378e4203 100644 --- a/helix-loader/src/grammar.rs +++ b/helix-loader/src/grammar.rs @@ -229,7 +229,6 @@ where } fn build_grammar(grammar: GrammarConfiguration) -> Result<()> { - println!("{:#?}", grammar); let grammar_dir = if let GrammarSource::Local { path } = &grammar.source { PathBuf::from(&path) } else { |