Skip to content

Commit 1ad72ea

Browse files
authored
Merge pull request #607 from dbrgn/issue-url
Add full URL to deprecation warnings
2 parents f156070 + 1e19ed3 commit 1ad72ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/future/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ if_std! {
102102
#[doc(hidden)]
103103
#[deprecated(note = "removed without replacement, recommended to use a \
104104
local extension trait or function if needed, more \
105-
details in #228")]
105+
details in https://github.com/alexcrichton/futures-rs/issues/228")]
106106
pub type BoxFuture<T, E> = ::std::boxed::Box<Future<Item = T, Error = E> + Send>;
107107

108108
impl<F: ?Sized + Future> Future for ::std::boxed::Box<F> {
@@ -323,7 +323,7 @@ pub trait Future {
323323
#[doc(hidden)]
324324
#[deprecated(note = "removed without replacement, recommended to use a \
325325
local extension trait or function if needed, more \
326-
details in #228")]
326+
details in https://github.com/alexcrichton/futures-rs/issues/228")]
327327
#[allow(deprecated)]
328328
fn boxed(self) -> BoxFuture<Self::Item, Self::Error>
329329
where Self: Sized + Send + 'static

src/stream/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ if_std! {
124124
#[doc(hidden)]
125125
#[deprecated(note = "removed without replacement, recommended to use a \
126126
local extension trait or function if needed, more \
127-
details in #228")]
127+
details in https://github.com/alexcrichton/futures-rs/issues/228")]
128128
pub type BoxStream<T, E> = ::std::boxed::Box<Stream<Item = T, Error = E> + Send>;
129129

130130
impl<S: ?Sized + Stream> Stream for ::std::boxed::Box<S> {
@@ -267,7 +267,7 @@ pub trait Stream {
267267
#[doc(hidden)]
268268
#[deprecated(note = "removed without replacement, recommended to use a \
269269
local extension trait or function if needed, more \
270-
details in #228")]
270+
details in https://github.com/alexcrichton/futures-rs/issues/228")]
271271
#[allow(deprecated)]
272272
fn boxed(self) -> BoxStream<Self::Item, Self::Error>
273273
where Self: Sized + Send + 'static,

0 commit comments

Comments
 (0)