We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92cce78 commit 114593dCopy full SHA for 114593d
src/libcore/char/methods.rs
@@ -189,10 +189,8 @@ impl char {
189
/// An extended version of `escape_debug` that optionally permits escaping
190
/// Extended Grapheme codepoints. This allows us to format characters like
191
/// nonspacing marks better when they're at the start of a string.
192
- #[doc(hidden)]
193
- #[unstable(feature = "str_internals", issue = "0")]
194
#[inline]
195
- pub fn escape_debug_ext(self, escape_grapheme_extended: bool) -> EscapeDebug {
+ pub(crate) fn escape_debug_ext(self, escape_grapheme_extended: bool) -> EscapeDebug {
196
let init_state = match self {
197
'\t' => EscapeDefaultState::Backslash('t'),
198
'\r' => EscapeDefaultState::Backslash('r'),
0 commit comments