aboutsummaryrefslogtreecommitdiff
path: root/helix-loader/src
diff options
context:
space:
mode:
authorMichael Davis2022-03-11 03:28:34 +0000
committerGitHub2022-03-11 03:28:34 +0000
commit98851d1594e712c3a222fa6624b2aa89176464c6 (patch)
treec25cd8c8abb3ecfc291c15606d2e001a04a06f66 /helix-loader/src
parent37fed4de8001e92a7ebe8450263bc4f56a59e014 (diff)
remove stray 'println!' from grammar building function (#1785)
Diffstat (limited to 'helix-loader/src')
-rw-r--r--helix-loader/src/grammar.rs1
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 {