Skip to content

Commit b8386fe

Browse files
authored
Merge pull request #6481 from adyouri/master
Fix a typo
2 parents 9fcc45a + a5c6112 commit b8386fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create-react-app/createReactApp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ function run(
465465
const currentFiles = fs.readdirSync(path.join(root));
466466
currentFiles.forEach(file => {
467467
knownGeneratedFiles.forEach(fileToMatch => {
468-
// This remove all of knownGeneratedFiles.
468+
// This removes all knownGeneratedFiles.
469469
if (file === fileToMatch) {
470470
console.log(`Deleting generated file... ${chalk.cyan(file)}`);
471471
fs.removeSync(path.join(root, file));

0 commit comments

Comments
 (0)