Skip to content

Commit 2c1d655

Browse files
committed
Remove two obsolete uses of #![feature(split_inclusive)]
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
1 parent be226e4 commit 2c1d655

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

library/core/src/str/iter.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,6 @@ impl<'a, P: Pattern<'a>> SplitInclusive<'a, P> {
12841284
///
12851285
/// ```
12861286
/// #![feature(str_split_inclusive_as_str)]
1287-
/// #![feature(split_inclusive)]
12881287
/// let mut split = "Mary had a little lamb".split_inclusive(' ');
12891288
/// assert_eq!(split.as_str(), "Mary had a little lamb");
12901289
/// split.next();

src/librustdoc/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#![feature(never_type)]
1616
#![feature(once_cell)]
1717
#![feature(type_ascription)]
18-
#![feature(split_inclusive)]
1918
#![feature(str_split_once)]
2019
#![feature(iter_intersperse)]
2120
#![recursion_limit = "256"]

0 commit comments

Comments
 (0)