Skip to content

Commit

Permalink
Add tracking issue number for fmt_as_str.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se committed Jul 17, 2020
1 parent 0c51f53 commit 9c3353b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/fmt/mod.rs
Expand Up @@ -439,7 +439,7 @@ impl<'a> Arguments<'a> {
/// assert_eq!(format_args!("").as_str(), Some(""));
/// assert_eq!(format_args!("{}", 1).as_str(), None);
/// ```
#[unstable(feature = "fmt_as_str", issue = "none")]
#[unstable(feature = "fmt_as_str", issue = "74442")]
#[inline]
pub fn as_str(&self) -> Option<&'static str> {
match (self.pieces, self.args) {
Expand Down

0 comments on commit 9c3353b

Please sign in to comment.