-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-attributesArea: Attributes (`#[…]`, `#![…]`)Area: Attributes (`#[…]`, `#![…]`)T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
/// Does something badly.
#[deprecated="use `fixed`"]
pub fn broken() { .. }
/// Does something well.
#[stable]
pub fn fixed() { .. }
Function broken
fn broken()
Stability: Deprecated[coloured red] use
fixed
Does something badly.
Function fixed
fn fixed()
Stability: Stable[coloured e.g. green]
Does something well.
Metadata
Metadata
Assignees
Labels
A-attributesArea: Attributes (`#[…]`, `#![…]`)Area: Attributes (`#[…]`, `#![…]`)T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.