Skip to content

Commit f31b664

Browse files
Fixed typo in Ruby tutorial 2
1 parent adad813 commit f31b664

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ruby/lesson4/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ Try it out with the following data to make sure that you get back the correct re
172172

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

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

0 commit comments

Comments
 (0)