Skip to content

Commit

Permalink
Correct capitalization error
Browse files Browse the repository at this point in the history
  • Loading branch information
brandenge authored Jan 20, 2023
1 parent 1a5c537 commit 8fcc843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions problem-solving/spec/mad_lib_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RSpec.describe MadLib do

it 'can create a new mad lib' do
madlib = Madlib.new
madlib = MadLib.new

madlib.noun("dog")
madlib.verb("walk")
Expand All @@ -16,7 +16,7 @@
end

it 'can create another mad lib' do
madlib = Madlib.new
madlib = MadLib.new

madlib.noun("capybara")
madlib.verb("pet")
Expand Down

0 comments on commit 8fcc843

Please sign in to comment.