From 79263afb3eeb3f02cc7b9b9c328206283d85e30a Mon Sep 17 00:00:00 2001 From: hman523 Date: Mon, 9 Sep 2019 21:19:01 -0500 Subject: [PATCH] Changed instant is earlier to instant is later --- src/libstd/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/time.rs b/src/libstd/time.rs index d59085cd44a6f..dbec4da24f96a 100644 --- a/src/libstd/time.rs +++ b/src/libstd/time.rs @@ -216,7 +216,7 @@ impl Instant { } /// Returns the amount of time elapsed from another instant to this one, - /// or None if that instant is earlier than this one. + /// or None if that instant is later than this one. /// /// # Examples ///