diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2017-12-02 19:14:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-02 19:14:36 +0900 |
commit | 4c4d092431f45471f90badb81eaa2011843cc39b (patch) | |
tree | e04e6d02f33aa30f2a714c0d3e7c5a4d71763689 | |
parent | 70c96b4423abacecb1116184c8ea4d4662b809f8 (diff) | |
parent | 99f6722e86c5451e1334db31a18ae2cbaccb551d (diff) | |
download | rails-4c4d092431f45471f90badb81eaa2011843cc39b.tar.gz rails-4c4d092431f45471f90badb81eaa2011843cc39b.tar.bz2 rails-4c4d092431f45471f90badb81eaa2011843cc39b.zip |
Merge pull request #31312 from willnet/add-a-missing-space-before-closing-curly-braces
[ci skip] Add a missing space before closing curly braces
-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 ``` |