1pub mod error;
2
3mod doc_comments;
4mod spanned;
5mod ty;
6
7pub use doc_comments::extract_doc_comment;
8pub use doc_comments::format_doc_comment;
9
10pub use self::{
11 spanned::Sp,
12 ty::{inner_type, is_simple_ty, sub_type, subty_if_name, Ty},
13};
14