diff --git a/crates/oxc_transformer/src/es2022/class_properties/instance_prop_init.rs b/crates/oxc_transformer/src/es2022/class_properties/instance_prop_init.rs index f6acc81e085c6..d65cf292a384e 100644 --- a/crates/oxc_transformer/src/es2022/class_properties/instance_prop_init.rs +++ b/crates/oxc_transformer/src/es2022/class_properties/instance_prop_init.rs @@ -152,7 +152,7 @@ impl<'a> InstanceInitializerVisitor<'a, '_> { /// Unlike `InstanceInitializerVisitor`, does not check for symbol clashes. /// /// Therefore only needs to walk until find a node which has a scope. No point continuing to traverse -/// inside that scope, as by definition and nested scopes can't be first level. +/// inside that scope, as by definition any nested scopes can't be first level. /// /// The visitors here are for the only types which can be the first scope reached when starting /// traversal from an `Expression`.