diff options
author | HampusM <hampus@hampusmat.com> | 2023-05-16 21:59:46 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-05-16 21:59:46 +0200 |
commit | cc30a537284871d668911353bd121e38d0353eb0 (patch) | |
tree | 121976a44346f5979447d9d9052372246d4ff66c /src/gloss_list.rs | |
parent | b336066d6067a0eb9ff9fc34c5aa062b86e56c62 (diff) |
Diffstat (limited to 'src/gloss_list.rs')
-rw-r--r-- | src/gloss_list.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gloss_list.rs b/src/gloss_list.rs index 74cf6f1..1b4febb 100644 --- a/src/gloss_list.rs +++ b/src/gloss_list.rs @@ -1,5 +1,5 @@ //! Gloss list. -use crate::description::{Paragraph, ParagraphError}; +use crate::paragraph::{Error as ParagraphError, Paragraph}; use crate::xml::element::{Element, FromElements}; /// Gloss list. @@ -150,7 +150,7 @@ mod tests use pretty_assertions::assert_str_eq; use super::*; - use crate::description::ParagraphPart; + use crate::paragraph::Part as ParagraphPart; use crate::xml::element::{Element, Elements, Tagged}; #[test] |