diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-23 15:58:59 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-23 16:07:54 +0100 |
| commit | 5ae81971f299688b05d77af208d7bb44ffce5e2d (patch) | |
| tree | 35b914f9bdf5565d4602c4bdda08ccbc30977df4 /src/model/mod.rs | |
| parent | b2a3d3f235fb5a23322435b854460f52db772114 (diff) | |
Introduce `Library`
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs index 0f946a40..93e33d5c 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -1,7 +1,7 @@ //! Document and computation model. #[macro_use] -mod items; +mod library; #[macro_use] mod cast; #[macro_use] @@ -34,7 +34,7 @@ pub use self::content::*; pub use self::dict::*; pub use self::eval::*; pub use self::func::*; -pub use self::items::*; +pub use self::library::*; pub use self::scope::*; pub use self::str::*; pub use self::styles::*; |
