Skip to content

Commit

Permalink
Fixed typo in Ruby tutorial 2
Browse files Browse the repository at this point in the history
  • Loading branch information
clairgriffiths committed Feb 24, 2016
1 parent adad813 commit f31b664
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ruby/lesson4/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ Try it out with the following data to make sure that you get back the correct re

```ruby
tutorial1 = Tutorial.new("Object Oriented Ruby", :ruby, :medium)
turorial2 = Tutorial.new("Introduction to JavaScript", :javascript, :easy)
turorial3 = Tutorial.new("HTTP Requests, AJAX and APIs", :javascript, :medium)
tutorial2 = Tutorial.new("Introduction to JavaScript", :javascript, :easy)
tutorial3 = Tutorial.new("HTTP Requests, AJAX and APIs", :javascript, :medium)

tutorial1.is_harder_than?(tutorial2)
# You cannot compare a Ruby with a JavaScript tutorial
Expand Down

0 comments on commit f31b664

Please sign in to comment.