about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2021-03-22 15:21:31 +0100
committerGitHub <noreply@github.com>2021-03-22 15:21:31 +0100
commitce06787548ceed47adb54eea559f820c21f71cf4 (patch)
treebfba5c4738b03eb81390ee409eb311cc19ad4b2d
parent014a4ee9f5ea67798bbc7a2e815d4acc986967ce (diff)
parentfe957350c700ba3a98c640054ad4978909594603 (diff)
downloadrust-ce06787548ceed47adb54eea559f820c21f71cf4.tar.gz
rust-ce06787548ceed47adb54eea559f820c21f71cf4.zip
Rollup merge of #83372 - eggyal:split-inclusive, r=Mark-Simulacrum
SplitInclusive is public API
-rw-r--r--library/core/src/str/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/str/mod.rs b/library/core/src/str/mod.rs
index b5c94559463..03ed301eacf 100644
--- a/library/core/src/str/mod.rs
+++ b/library/core/src/str/mod.rs
@@ -66,7 +66,7 @@ pub use iter::{EscapeDebug, EscapeDefault, EscapeUnicode};
 pub use iter::SplitAsciiWhitespace;
 
 #[stable(feature = "split_inclusive", since = "1.51.0")]
-use iter::SplitInclusive;
+pub use iter::SplitInclusive;
 
 #[unstable(feature = "str_internals", issue = "none")]
 pub use validations::next_code_point;