summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-03-04 13:18:33 +0100
committerHampusM <hampus@hampusmat.com>2023-03-04 13:18:33 +0100
commita15a878b87a4891ec856178c151faeaaa1799ad3 (patch)
tree8b72271476e8b4ca0cc89703d89ec736cd6febb8 /src/lib.rs
parentf576587f8b872b6369c7079055944977f2293e5c (diff)
feat: add table support
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f1e15cb..c02716f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -14,8 +14,8 @@ use crate::xml::element::{Elements, FromElements};
use crate::xml::parser::{Error as ParserError, Parser};
pub mod description;
-pub mod informal_table;
pub mod itemized_list;
+pub mod table;
pub mod variable_list;
mod xml;