summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-02-18 15:02:02 +0100
committerLaurenz <laurmaedje@gmail.com>2022-02-18 16:57:53 +0100
commite01970b20a058ab1b4ebea916f229c9b706c84e4 (patch)
tree5c5efc75abd6e607bd45a0602603231edf520503 /src/syntax/mod.rs
parent05ec0f993b4a1b8481e494ee16285d23f000872f (diff)
Basic show rules
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};