1
Fork 0

Remove use of #[rustc_deprecated]

This commit is contained in:
Jacob Pratt 2022-04-07 21:20:32 -04:00
parent 8ff5e3cf99
commit 4fbe73e0b7
No known key found for this signature in database
GPG key ID: B80E19E4662B5AA4
77 changed files with 274 additions and 356 deletions

View file

@ -657,7 +657,7 @@ impl<T> [T] {
/// ```
#[rustc_allow_incoherent_impl]
#[stable(feature = "rust1", since = "1.0.0")]
#[rustc_deprecated(since = "1.3.0", reason = "renamed to join")]
#[deprecated(since = "1.3.0", note = "renamed to join")]
pub fn connect<Separator>(&self, sep: Separator) -> <Self as Join<Separator>>::Output
where
Self: Join<Separator>,