Skip to content

Commit a4c0a6f

Browse files
committed
doc: add missing commas
1 parent e15dd99 commit a4c0a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/time/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mod duration;
2929
/// benchmarks or timing how long an operation takes.
3030
///
3131
/// Note, however, that instants are not guaranteed to be **steady**. In other
32-
/// words each tick of the underlying clock may not be the same length (e.g.
32+
/// words, each tick of the underlying clock may not be the same length (e.g.
3333
/// some seconds may be longer than others). An instant may jump forwards or
3434
/// experience time dilation (slow down or speed up), but it will never go
3535
/// backwards.
@@ -59,7 +59,7 @@ pub struct Instant(time::Instant);
5959
/// Although a `SystemTime` cannot be directly inspected, the `UNIX_EPOCH`
6060
/// constant is provided in this module as an anchor in time to learn
6161
/// information about a `SystemTime`. By calculating the duration from this
62-
/// fixed point in time a `SystemTime` can be converted to a human-readable time
62+
/// fixed point in time, a `SystemTime` can be converted to a human-readable time,
6363
/// or perhaps some other string representation.
6464
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
6565
#[unstable(feature = "time2", reason = "recently added", issue = "29866")]

0 commit comments

Comments
 (0)