mirror of
https://github.com/TxtDot/dalet-rs.git
synced 2024-11-06 01:43:57 +03:00
refactor: rename abstract to typed
This commit is contained in:
parent
4cc99ce163
commit
a2cb481d29
4 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
pub mod daletl;
|
||||
|
||||
#[cfg(feature = "types")]
|
||||
pub mod abstractions;
|
||||
pub mod typed;
|
||||
|
||||
#[cfg(feature = "daletpack")]
|
||||
pub mod daletpack;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use crate::abstractions::{Body, HeadingLevel, NotNullBody, Tag};
|
||||
use crate::typed::{Body, HeadingLevel, NotNullBody, Tag};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum GemTextParseError {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use dalet::{
|
||||
abstractions::{Body, HeadingLevel, NotNullBody, Tag, TextOrNullArgument},
|
||||
daletl::ToDaletl,
|
||||
daletpack::*,
|
||||
typed::{Body, HeadingLevel, NotNullBody, Tag, TextOrNullArgument},
|
||||
};
|
||||
use flate2::Compression;
|
||||
use std::io::Write;
|
||||
|
|
Loading…
Reference in a new issue