Skip to content

Commit

Permalink
Fix git help command in hint (#263)
Browse files Browse the repository at this point in the history
The hint says to use `git gitignore --help`, but that doesn't work.

```
git: 'gitignore' is not a git command. See 'git --help'.
```

Instead, the command that does work is `git help gitignore`.
  • Loading branch information
osartun authored and Gazler committed Sep 3, 2019
1 parent d701a11 commit 2db7ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion levels/include.rb
Expand Up @@ -17,5 +17,5 @@
end

hint do
puts "Using `git gitignore --help`, read about the optional prefix to negate a pattern."
puts "Using `git help gitignore`, read about the optional prefix to negate a pattern."
end

0 comments on commit 2db7ee6

Please sign in to comment.