fix(ch01): don't use symbol in example

symbols are beyond the scope of the book, h/t to levi for noticing this
This commit is contained in:
Brett Chalupa 2022-12-11 11:20:54 -05:00
parent eb2285bb8c
commit 819479abb3

View file

@ -82,7 +82,7 @@ Let's say you wanted to give a friend a cookie 🍪, you'd define a method calle
``` ruby
def give_cookie(friend)
friend.eat(:cookie)
friend.eat("cookie")
end
```