diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-10-05 19:55:15 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-10-05 19:55:15 +0200 |
| commit | 3d0dcbea182f6a81539c12c9d5156cf0f6863b67 (patch) | |
| tree | 36a37fb5e39db8ca13f83ca362d01c0e0a9fdffa /src/library/mod.rs | |
| parent | 25b053ed93a6cbffceb52b790d013d69dc2a31c2 (diff) | |
Error on out-of-range values in `rgb`
Diffstat (limited to 'src/library/mod.rs')
| -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 1fcd0581..411755bb 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -22,7 +22,7 @@ use crate::eval::{Args, Array, EvalContext, Scope, State, Str, Template, Value}; use crate::font::{FontFamily, FontStretch, FontStyle, FontWeight, VerticalFontMetric}; use crate::geom::*; use crate::layout::LayoutNode; -use crate::syntax::Spanned; +use crate::syntax::{Span, Spanned}; /// Construct a scope containing all standard library definitions. pub fn new() -> Scope { |
