ruby-for-beginners icon indicating copy to clipboard operation
ruby-for-beginners copied to clipboard

Suggestion: mention commonly used shorthand for attribute reader/writer

Open jeromu opened this issue 6 years ago • 0 comments

In section: 11-writing_classes/06-attribute_writers.md

I suggest you mention these commonly used methods:

class Person
  attr_reader :name
  attr_writer :name
end

class Person
  attr_accessor :name
end

jeromu avatar Jun 16 '19 12:06 jeromu