about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/traits
diff options
context:
space:
mode:
authorCamelid <camelidcamel@gmail.com>2020-11-24 15:44:04 -0800
committerCamelid <camelidcamel@gmail.com>2020-11-24 16:25:43 -0800
commit82dc99ba7aca7880acc0e823f31e9ba5da518e88 (patch)
tree49ab4d77f6be574b14751b93b3270591d4ad1f50 /compiler/rustc_middle/src/traits
parent810324d1f31eb8d75e8f0044df720652986ef133 (diff)
downloadrust-82dc99ba7aca7880acc0e823f31e9ba5da518e88.tar.gz
rust-82dc99ba7aca7880acc0e823f31e9ba5da518e88.zip
Use the name "auto traits" everywhere in the compiler
Goodbye, OIBIT!
Diffstat (limited to 'compiler/rustc_middle/src/traits')
-rw-r--r--compiler/rustc_middle/src/traits/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/traits/mod.rs b/compiler/rustc_middle/src/traits/mod.rs
index 4deb7225dcb..0764e273a4a 100644
--- a/compiler/rustc_middle/src/traits/mod.rs
+++ b/compiler/rustc_middle/src/traits/mod.rs
@@ -70,7 +70,7 @@ pub enum Reveal {
     /// be observable directly by the user, `Reveal::All`
     /// should not be used by checks which may expose
     /// type equality or type contents to the user.
-    /// There are some exceptions, e.g., around OIBITS and
+    /// There are some exceptions, e.g., around auto traits and
     /// transmute-checking, which expose some details, but
     /// not the whole concrete type of the `impl Trait`.
     All,