diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2021-03-22 15:21:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-22 15:21:31 +0100 |
| commit | ce06787548ceed47adb54eea559f820c21f71cf4 (patch) | |
| tree | bfba5c4738b03eb81390ee409eb311cc19ad4b2d | |
| parent | 014a4ee9f5ea67798bbc7a2e815d4acc986967ce (diff) | |
| parent | fe957350c700ba3a98c640054ad4978909594603 (diff) | |
| download | rust-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.rs | 2 |
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; |
