From e676ab53ddbab367179ee2ab214bb41ff2ee0c11 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Thu, 1 Oct 2020 15:13:04 +0200 Subject: =?UTF-8?q?Rename=20compute=20to=20eval=20=E2=9C=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 6d52fd37..43152542 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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}; -- cgit v1.2.3