Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct typos #522

Merged
merged 2 commits into from Jun 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion DOCS.md
Expand Up @@ -90,7 +90,7 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
```

_This feature is experimental 🧪. Feedbacks are welcome._
_This feature is experimental 🧪. Feedback is welcome._

## Debug

Expand Down
2 changes: 1 addition & 1 deletion src/installer/gitRevParse.ts
Expand Up @@ -26,7 +26,7 @@ export default function(): {
// If we get --absolute-git-dir in the output,
// it probably means that an older version of Git has been used.
if (absoluteGitDir === '--absolute-git-dir') {
throw new Error('Husky requires Git >= 2.13.2, please updade Git')
throw new Error('Husky requires Git >= 2.13.2, please update Git')
}

return { topLevel, absoluteGitDir }
Expand Down