diff options
Diffstat (limited to 'crates/shirabe-symfony-string/src')
| -rw-r--r-- | crates/shirabe-symfony-string/src/byte_string.rs | 2 | ||||
| -rw-r--r-- | crates/shirabe-symfony-string/src/unicode_string.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe-symfony-string/src/byte_string.rs b/crates/shirabe-symfony-string/src/byte_string.rs index cf597bbf..eca1380b 100644 --- a/crates/shirabe-symfony-string/src/byte_string.rs +++ b/crates/shirabe-symfony-string/src/byte_string.rs @@ -4,7 +4,7 @@ use crate::code_point_string::CodePointString; #[derive(Debug, Clone)] pub struct ByteString { - pub(crate) string: String, + string: String, } impl ByteString { diff --git a/crates/shirabe-symfony-string/src/unicode_string.rs b/crates/shirabe-symfony-string/src/unicode_string.rs index 21117437..e611da6b 100644 --- a/crates/shirabe-symfony-string/src/unicode_string.rs +++ b/crates/shirabe-symfony-string/src/unicode_string.rs @@ -2,7 +2,7 @@ #[derive(Debug, Clone)] pub struct UnicodeString { - pub(crate) string: String, + string: String, } impl UnicodeString { |
