Programming Ruby 3.2 (5th Edition): Typo in Ruby code (PDF p. 225)

Hi

The second to last line of Ruby code reads:

expect(instance).to have_attriubtes(color: "blue")

Should be:

expect(instance).to have_attributes(color: "blue")

Cheeres,

Stephan

Thanks, this will be fixed!

Noel