```ruby class Nutella attr_accessor :nuts def initialize @nuts = "yes" end end jar = Nutella.new puts jar.nuts # period .nuts is not in omni-completion list. ``` Can anyone tell me why it would not suggest the @nuts class instance variable in omni completion?