Skip to content

Commit 799eda4

Browse files
authored
Issue number should be for tracking issue not PR
1 parent b66ab1a commit 799eda4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/time.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ impl Duration {
274274
/// let duration = Duration::new(5, 730023852);
275275
/// assert_eq!(duration.as_nanos(), 5730023852);
276276
/// ```
277-
#[unstable(feature = "duration_nanos", issue = "50167")]
277+
#[unstable(feature = "duration_nanos", issue = "50202")]
278278
#[inline]
279279
pub fn as_nanos(&self) -> u128 {
280280
self.secs as u128 * NANOS_PER_SEC as u128 + self.nanos as u128

0 commit comments

Comments
 (0)