summaryrefslogtreecommitdiffstats
path: root/third_party/rust/Inflector/src/numbers/mod.rs
blob: f28704f52e8fd21b5f91b11d0f766fc55e31b814 (plain)
1
2
3
4
5
6
7
8
9
#![deny(warnings)]
/// Provides ordinalization of a string.
///
/// Example string "1" becomes "1st"
pub mod ordinalize;
/// Provides deordinalization of a string.
///
/// Example string "1st" becomes "1"
pub mod deordinalize;