From 5d8118a0b3eb53f318a09c168899cf4ea4efb9b5 Mon Sep 17 00:00:00 2001 From: Justin Ridgewell Date: Sat, 11 Apr 2020 21:00:02 -0400 Subject: [PATCH] Comments --- .../babel-helper-create-class-features-plugin/src/fields.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); },