From ed472c8e0dc0e26e48fd875e2cf08042546c2706 Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Sat, 11 Jul 2015 11:14:23 -0400 Subject: [PATCH] Fix feature name --- src/libcollections/slice.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs index 1f797d7febf12..85a4d6f192ee7 100644 --- a/src/libcollections/slice.rs +++ b/src/libcollections/slice.rs @@ -1033,7 +1033,7 @@ pub trait SliceConcatExt { /// ``` /// assert_eq!(["hello", "world"].join(" "), "hello world"); /// ``` - #[stable(feature = "rust1", since = "1.3.0")] + #[stable(feature = "rename_connect_to_join", since = "1.3.0")] fn join(&self, sep: &T) -> Self::Output; /// Flattens a slice of `T` into a single value `Self::Output`, placing a