aboutsummaryrefslogtreecommitdiff
path: root/src/str_slice.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/str_slice.rs')
-rw-r--r--src/str_slice.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/str_slice.rs b/src/str_slice.rs
index 0016e95..8c94528 100644
--- a/src/str_slice.rs
+++ b/src/str_slice.rs
@@ -6,7 +6,7 @@ use core::str;
/// String slice newtype which respects the [`Length::max`] limit.
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
-pub(crate) struct StrSlice<'a> {
+pub struct StrSlice<'a> {
/// Inner value
pub(crate) inner: &'a str,