diff options
author | willnet <netwillnet@gmail.com> | 2017-12-02 16:35:38 +0900 |
---|---|---|
committer | willnet <netwillnet@gmail.com> | 2017-12-02 16:35:38 +0900 |
commit | 99f6722e86c5451e1334db31a18ae2cbaccb551d (patch) | |
tree | e04e6d02f33aa30f2a714c0d3e7c5a4d71763689 /guides | |
parent | 70c96b4423abacecb1116184c8ea4d4662b809f8 (diff) | |
download | rails-99f6722e86c5451e1334db31a18ae2cbaccb551d.tar.gz rails-99f6722e86c5451e1334db31a18ae2cbaccb551d.tar.bz2 rails-99f6722e86c5451e1334db31a18ae2cbaccb551d.zip |
[ci skip] Add a missing space before closing curly braces
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/form_helpers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md index 4ce67df93a..f8ec389b01 100644 --- a/guides/source/form_helpers.md +++ b/guides/source/form_helpers.md @@ -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 ``` |