diff --git a/packages/babel-helper-create-class-features-plugin/src/fields.js b/packages/babel-helper-create-class-features-plugin/src/fields.js index 83ecb46eb530..567e49dc25b5 100644 --- a/packages/babel-helper-create-class-features-plugin/src/fields.js +++ b/packages/babel-helper-create-class-features-plugin/src/fields.js @@ -98,7 +98,7 @@ const privateNameVisitor = { } // This class redeclares some private name. We need to process the outer - // environment with access to all the outer private, then we can process + // environment with access to all the outer privates, then we can process // the inner environment with only the still-visible outer privates. path.traverse(privateNameNestedVisitor, this); path.traverse(privateNameVisitor, { @@ -106,7 +106,7 @@ const privateNameVisitor = { privateNamesMap: visiblePrivateNames, }); - // We'll eventually this this class node again with the overall Class + // We'll eventually hit this class node again with the overall Class // Features visitor, which'll process the redeclared privates. path.skip(); },