Skip to content

Commit

Permalink
docs: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
typicode committed Jul 1, 2021
1 parent 3415f44 commit 9cdda8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/README.md
Expand Up @@ -25,13 +25,14 @@ Add a hook:

```sh
npx husky add .husky/pre-commit "npm test"
git add .husky/pre-commit
```

Make a commit:

```sh
$ git commit -m "Keep calm and commit"
# `npm test` will run
git commit -m "Keep calm and commit"
# `npm test` will run every time you commit
```

_For more use cases (project in sub-directory, custom directory, CI support, ...), see documentation._
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -23,12 +23,13 @@ Add a hook:

```sh
npx husky add .husky/pre-commit "npm test"
git add .husky/pre-commit
```

Make a commit:

```sh
$ git commit -m "Keep calm and commit"
git commit -m "Keep calm and commit"
# `npm test` will run
```

Expand Down

0 comments on commit 9cdda8e

Please sign in to comment.