From 6a1cd02b3affbd9d2c9b71d93ceb4c621894ff17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sat, 6 Sep 2025 17:15:27 +0200 Subject: [PATCH] Clarify "this" in `time::now` docs --- src/time.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/time.rs b/src/time.rs index 6400dc7f..b43ced96 100644 --- a/src/time.rs +++ b/src/time.rs @@ -17,8 +17,8 @@ use crate::Task; /// Returns a [`Task`] that produces the current [`Instant`] /// by calling [`Instant::now`]. /// -/// While you can call [`Instant::now`] directly in your application, -/// this is an "impure" operation (i.e. it's not referentially transparent). +/// While you can call [`Instant::now`] directly in your application; +/// that renders your application "impure" (i.e. no referential transparency). /// /// You may care about purity if you want to leverage the `time-travel` /// feature properly.