diff options
Diffstat (limited to 'src/library')
| -rw-r--r-- | src/library/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/mod.rs b/src/library/mod.rs index 3c1d752d..213106d6 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -17,12 +17,12 @@ use std::fmt::{self, Display, Formatter}; use std::rc::Rc; use crate::color::{Color, RgbaColor}; -use crate::eco::EcoString; use crate::eval::{EvalContext, FuncArgs, Scope, Template, Type, Value}; use crate::exec::{Exec, FontFamily}; use crate::font::{FontStyle, FontWeight, VerticalFontMetric}; use crate::geom::*; use crate::syntax::Spanned; +use crate::util::EcoString; /// Construct a scope containing all standard library definitions. pub fn new() -> Scope { |
