以下のコードで間違っている部分はどれですか? ```ruby class Book attr_accessor :title def initialize(title) title = title # A end def display puts self.title # B end end ```