Skip to content

Commit

Permalink
Merge pull request #49 from kiela/master
Browse files Browse the repository at this point in the history
Set proper form of verbs for third person
  • Loading branch information
Avdi Grimm committed Feb 7, 2014
2 parents 84c45e0 + e64d051 commit 6837974
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/base_object_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
end
end

it 'respond to base class methods' do
it 'responds to base class methods' do
expect(null.methods).to be_an Array
end

it 'respond to unknown methods' do
it 'responds to unknown methods' do
expect(null.foo).to be_nil
end

Expand Down
2 changes: 1 addition & 1 deletion spec/functions/maybe_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
expect(Maybe(null)).to be(null)
end

specify 'given anything in null_equivalents, return a null object' do
specify 'given anything in null_equivalents, returns a null object' do
expect(Maybe('').class).to be(ConvertableNull)
end

Expand Down
2 changes: 1 addition & 1 deletion spec/functions/null_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
expect(Null(null)).to be(null)
end

specify 'given anything in null_equivalents, return a null object' do
specify 'given anything in null_equivalents, returns a null object' do
expect(Null('').class).to be(ConvertableNull)
end

Expand Down

0 comments on commit 6837974

Please sign in to comment.