diff options
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs index fdebce0a..20bca106 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -1,4 +1,4 @@ -//! Layout and computation model. +//! Document and computation model. #[macro_use] mod items; @@ -23,18 +23,18 @@ mod ops; mod scope; mod vm; -pub use self::str::*; -pub use args::*; -pub use array::*; -pub use cast::*; -pub use content::*; -pub use dict::*; -pub use eval::*; -pub use func::*; -pub use items::*; -pub use scope::*; -pub use styles::*; -pub use value::*; -pub use vm::*; - pub use typst_macros::{capability, node}; + +pub use self::args::*; +pub use self::array::*; +pub use self::cast::*; +pub use self::content::*; +pub use self::dict::*; +pub use self::eval::*; +pub use self::func::*; +pub use self::items::*; +pub use self::scope::*; +pub use self::str::*; +pub use self::styles::*; +pub use self::value::*; +pub use self::vm::*; |
