about summary refs log tree commit diff
path: root/library/core/src/str/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-03-22 22:56:37 +0000
committerbors <bors@rust-lang.org>2021-03-22 22:56:37 +0000
commit9bb6d54577665fb3abb6cf27c40ed5247ff3fc7f (patch)
treec2ee8c2f33f9a4007eff807c98940fa0d4f0efcc /library/core/src/str/mod.rs
parent73f48e5f6f6217c4bf93026bc0072637966d6eab (diff)
parentf9dd96d576a872736cceb4a4a58bc03d62b421fc (diff)
downloadrust-9bb6d54577665fb3abb6cf27c40ed5247ff3fc7f.tar.gz
rust-9bb6d54577665fb3abb6cf27c40ed5247ff3fc7f.zip
Auto merge of #83377 - Mark-Simulacrum:stable-next, r=Mark-Simulacrum
[stable] 1.51.0 release

Also includes backports of the release notes, as well as:

*  SplitInclusive is public API #83372
*  std: Fix a bug on the wasm32-wasi target opening files #82804
*  Fix io::copy specialization using copy_file_range when writer was opened with O_APPEND #82417

r? `@Mark-Simulacrum`
Diffstat (limited to 'library/core/src/str/mod.rs')
-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 6a35378ca7b..b8c5a1d03bc 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;