Skip to content

Commit

Permalink
docs: minor comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ModulesUnraveled committed Dec 23, 2021
1 parent ce64cf7 commit f01ca72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handlers/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { EXIT_ERROR } from '../lib/constants';
const git = simpleGit();

/**
* Handler for the initalization command.
* Handler for the initialization command.
*
* @param name name of the project being initialized.
* @param targetDirectory relative path to the directory in which the project must be initialized.
Expand Down Expand Up @@ -154,7 +154,7 @@ export default function init(progress: InstanceType<typeof ProgressBar>) {

// Remove the .git directory, as this is a starter kit. This step
// should happen after dependencies are installed, and init scripts are
// executed, otherwise git-reliant dev deps in the starter may eror out.
// executed, otherwise git-reliant dev deps in the starter may error out.
await fs.rmdir(join(target, '.git'), { recursive: true });

progress.tick(10, {
Expand Down

0 comments on commit f01ca72

Please sign in to comment.