From 5ee801adbf479d0503cb4e4b26a96fea0c9cb861 Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Sat, 11 Jul 2015 11:00:18 -0400 Subject: [PATCH] Fix version number on SliceConcatExt:join --- 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 c4d9ef844eb84..1f797d7febf12 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.0.0")] + #[stable(feature = "rust1", since = "1.3.0")] fn join(&self, sep: &T) -> Self::Output; /// Flattens a slice of `T` into a single value `Self::Output`, placing a