-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing urls for Box doc #36576
Add missing urls for Box doc #36576
Conversation
@@ -269,12 +271,14 @@ impl<T: ?Sized> Box<T> { | |||
/// memory previously managed by the `Box`. In particular, the | |||
/// caller should properly destroy `T` and release the memory. The | |||
/// proper way to do so is to convert the raw pointer back into a | |||
/// `Box` with the `Box::from_raw` function. | |||
/// `Box` with the [`Box::from_raw`] function. | |||
/// | |||
/// Note: this is an associated function, which means that you have |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this note really useful? We have an example just below after all...
/// | ||
/// Note: this is an associated function, which means that you have | ||
/// to call it as `Box::into_raw(b)` instead of `b.into_raw()`. This | ||
/// is so that there is no conflict with a method on the inner type. | ||
/// | ||
/// [`Box::from_raw`]: struct.Box.html#method.into_raw |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be struct.Box.html#method.from_raw
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
18e7919
to
dfa0940
Compare
@steveklabnik: ping |
@bors: r+ rollup |
📌 Commit dfa0940 has been approved by |
…bnik Add missing urls for Box doc r? @steveklabnik
r? @steveklabnik