I meant to commit diff, but it was left uncommitted locally.
This commit is contained in:
Takashi Kokubun 2022-12-15 13:06:29 -08:00
Родитель 5e81cf8fd0
Коммит 4872e8ef14
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -347,11 +347,8 @@ Note: We're only listing outstanding class updates.
```ruby
Post = Struct.new(:id, :name)
# In addition to this,
Post.new(1, "hello") #=> #<struct Post id=1, name="hello">
# Let the following initialization also work
# From Ruby 3.2, the following code also works without keyword_init: true.
Post.new(id: 1, name: "hello") #=> #<struct Post id=1, name="hello">
```