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

Fix some typos #89

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Your project may have many local rules:
* Should not use `Net::HTTP` for Web API calls, but use `HTTPClient`

These local rule violations will be found during code review.
Reviewers will ask commiter to revise; commiter will fix; fine.
Reviewers will ask committer to revise; committer will fix; fine.
Really?
It is boring and time-consuming.
We need some automation!
Expand Down
2 changes: 1 addition & 1 deletion test/config_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_factory_config_returns_empty_config
assert_equal Pathname("/foo/bar"), config.root_dir
end

def test_factory_config_resturns_config_with_rules
resturns def test_factory_config_returns_config_with_rules
config = Config::Factory.new(
{
"rules" => [
Expand Down
2 changes: 1 addition & 1 deletion test/pattern_parser_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def test_any_kinded
assert_instance_of K::Any, pat
end

def test_conditonal_kinded
def test_conditional_kinded
pat = parse_kinded("foo [conditional]")
assert_instance_of K::Conditional, pat
refute pat.negated
Expand Down