File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ pub use self::duration::Duration;
22
22
23
23
mod duration;
24
24
25
- /// A measurement of a monotonically increasing clock,
26
- /// only meaningful within one process .
25
+ /// A measurement of a monotonically increasing clock.
26
+ /// Opaque and useful only with `Duration` .
27
27
///
28
28
/// Instants are always guaranteed to be greater than any previously measured
29
29
/// instant when created, and are often useful for tasks such as measuring
@@ -43,8 +43,8 @@ mod duration;
43
43
#[ unstable( feature = "time2" , reason = "recently added" , issue = "29866" ) ]
44
44
pub struct Instant ( time:: Instant ) ;
45
45
46
- /// A measurement of the system clock appropriate for timestamps meaningful
47
- /// outside one process, such as those on files on the filesystem .
46
+ /// A measurement of the system clock, useful for talking to
47
+ /// external entities like the file system or other processes .
48
48
///
49
49
/// Distinct from the `Instant` type, this time measurement **is not
50
50
/// monotonic**. This means that you can save a file to the file system, then
You can’t perform that action at this time.
0 commit comments