Skip to content

Commit 89cb652

Browse files
committed
Remove unnecessary pub(self) modifier
1 parent d458d79 commit 89cb652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/se/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ const fn is_xml11_name_char(ch: char) -> bool {
467467

468468
/// Helper struct to self-defense from errors
469469
#[derive(Clone, Copy, Debug, PartialEq)]
470-
pub(self) struct XmlName<'n>(&'n str);
470+
struct XmlName<'n>(&'n str);
471471

472472
impl<'n> XmlName<'n> {
473473
/// Checks correctness of the XML name according to [XML 1.1 specification]

0 commit comments

Comments
 (0)