diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-02 14:48:51 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-02 14:48:51 +0100 |
| commit | 56342bd972a13ffe21beaf2b87ab7eb1597704b4 (patch) | |
| tree | 78f9549141e753dde4a938670c54f3fe8695a058 /src/model/str.rs | |
| parent | 37ac5d966ebaf97ac79c507028cd5b742b510b89 (diff) | |
Move layout traits into library
Diffstat (limited to 'src/model/str.rs')
| -rw-r--r-- | src/model/str.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/model/str.rs b/src/model/str.rs index 62b37845..843da9a8 100644 --- a/src/model/str.rs +++ b/src/model/str.rs @@ -5,8 +5,9 @@ use std::ops::{Add, AddAssign, Deref}; use unicode_segmentation::UnicodeSegmentation; -use super::{Array, Dict, RawAlign, Value}; +use super::{Array, Dict, Value}; use crate::diag::StrResult; +use crate::library::RawAlign; use crate::util::EcoString; /// Create a new [`Str`] from a format string. |
