summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index c0de081d..c702199e 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -2,7 +2,6 @@
pub mod ast;
mod highlight;
-mod pretty;
mod span;
use std::fmt::{self, Debug, Display, Formatter};
@@ -11,7 +10,6 @@ use std::ops::Range;
use std::sync::Arc;
pub use highlight::*;
-pub use pretty::*;
pub use span::*;
use self::ast::{MathNode, RawNode, TypedNode};