From 1de53730bce0bd3f9de89db1da7c19b7889b9a75 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 27 Jan 2023 12:04:23 +0100 Subject: Symbol values and modules --- library/src/text/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'library/src/text/mod.rs') diff --git a/library/src/text/mod.rs b/library/src/text/mod.rs index 3424cce6..85e58ecd 100644 --- a/library/src/text/mod.rs +++ b/library/src/text/mod.rs @@ -1,20 +1,22 @@ //! Text handling. mod deco; +mod emoji; mod misc; mod quotes; mod raw; mod shaping; mod shift; -mod symbol; +mod symbols; pub use self::deco::*; +pub use self::emoji::*; pub use self::misc::*; pub use self::quotes::*; pub use self::raw::*; pub use self::shaping::*; pub use self::shift::*; -pub use self::symbol::*; +pub use self::symbols::*; use std::borrow::Cow; -- cgit v1.2.3