about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-07-10 23:26:47 -0700
committerGitHub <noreply@github.com>2020-07-10 23:26:47 -0700
commitd2f8c30951581fa35bde0dbdd3260c5019b50421 (patch)
tree86833fd7f4c2bad113e785f84c86a3cb1f8b5328 /src/libstd
parent8355024ed0cda6b041bc0adb2ca17193946b6c8e (diff)
parent62cf767a4a39b47677d18110359d9e7152dc9d1c (diff)
downloadrust-d2f8c30951581fa35bde0dbdd3260c5019b50421.tar.gz
rust-d2f8c30951581fa35bde0dbdd3260c5019b50421.zip
Rollup merge of #74127 - tamird:allowlist, r=oli-obk
Avoid "whitelist"

Other terms are more inclusive and precise.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/time.rs b/src/libstd/time.rs
index 84fa35e01bb..9f4fa89cd55 100644
--- a/src/libstd/time.rs
+++ b/src/libstd/time.rs
@@ -241,7 +241,7 @@ impl Instant {
         // returned instead of what the OS says if the OS goes backwards.
         //
         // To hopefully mitigate the impact of this, a few platforms are
-        // whitelisted as "these at least haven't gone backwards yet".
+        // excluded as "these at least haven't gone backwards yet".
         if time::Instant::actually_monotonic() {
             return Instant(os_now);
         }