aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/impl_debug.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen/impl_debug.rs')
-rw-r--r--src/codegen/impl_debug.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codegen/impl_debug.rs b/src/codegen/impl_debug.rs
index ed1a5e2..b8fdd0d 100644
--- a/src/codegen/impl_debug.rs
+++ b/src/codegen/impl_debug.rs
@@ -120,9 +120,9 @@ impl<'a> ImplDebug<'a> for Item {
) -> Option<(String, Vec<proc_macro2::TokenStream>)> {
let name_ident = ctx.rust_ident(name);
- // We don't know if blacklisted items `impl Debug` or not, so we can't
+ // We don't know if blocklisted items `impl Debug` or not, so we can't
// add them to the format string we're building up.
- if !ctx.whitelisted_items().contains(&self.id()) {
+ if !ctx.allowlisted_items().contains(&self.id()) {
return None;
}