Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lib/text-size/src/size.rs')
| -rw-r--r-- | lib/text-size/src/size.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/text-size/src/size.rs b/lib/text-size/src/size.rs index ed4e849d51..5239ea6691 100644 --- a/lib/text-size/src/size.rs +++ b/lib/text-size/src/size.rs @@ -68,8 +68,6 @@ impl TextSize { pub const MIN: TextSize = TextSize(u32::MIN); /// The largest representable text size. (`u32::MAX`) pub const MAX: TextSize = TextSize(u32::MAX); - /// The text size of a single ASCII character. - pub const ASCII: TextSize = TextSize(1); /// Checked addition. Returns `None` if overflow occurred. #[inline] |