diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-01 15:13:04 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-01 15:13:04 +0200 |
| commit | e676ab53ddbab367179ee2ab214bb41ff2ee0c11 (patch) | |
| tree | f003f6eb6698494310da5771249bbb61a8da27a0 /src/lib.rs | |
| parent | 7c12f0c07f9d4ed473027dbd00cbbc00e4a3050c (diff) | |
Rename compute to eval ✏
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ mod macros; pub mod diagnostic; pub mod color; -pub mod compute; +pub mod eval; pub mod export; pub mod font; pub mod geom; @@ -44,8 +44,8 @@ use std::fmt::Debug; use std::future::Future; use std::pin::Pin; -use crate::compute::{Scope, Value}; use crate::diagnostic::Diagnostic; +use crate::eval::{Scope, Value}; use crate::font::SharedFontLoader; use crate::layout::{Commands, MultiLayout}; use crate::style::{LayoutStyle, PageStyle, TextStyle}; |
