diff options
Diffstat (limited to 'src/libstd/time')
| -rw-r--r-- | src/libstd/time/duration.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/time/duration.rs b/src/libstd/time/duration.rs index 17dba9af9e7..85aed47265f 100644 --- a/src/libstd/time/duration.rs +++ b/src/libstd/time/duration.rs @@ -21,7 +21,7 @@ use result::{Result, Ok, Err}; /// The number of nanoseconds in a microsecond. static NANOS_PER_MICRO: i32 = 1000; -/// The number of nanosecdons in a millisecond. +/// The number of nanoseconds in a millisecond. static NANOS_PER_MILLI: i32 = 1000_000; /// The number of nanoseconds in seconds. static NANOS_PER_SEC: i32 = 1_000_000_000; |
