1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip] Add a missing space before closing curly braces

This commit is contained in:
willnet 2017-12-02 16:35:38 +09:00
parent 70c96b4423
commit 99f6722e86

View file

@ -920,7 +920,7 @@ When an association accepts nested attributes `fields_for` renders its block onc
```ruby
def new
@person = Person.new
2.times { @person.addresses.build}
2.times { @person.addresses.build }
end
```