aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuji Yaginuma <yuuji.yaginuma@gmail.com>2017-12-02 19:14:36 +0900
committerGitHub <noreply@github.com>2017-12-02 19:14:36 +0900
commit4c4d092431f45471f90badb81eaa2011843cc39b (patch)
treee04e6d02f33aa30f2a714c0d3e7c5a4d71763689
parent70c96b4423abacecb1116184c8ea4d4662b809f8 (diff)
parent99f6722e86c5451e1334db31a18ae2cbaccb551d (diff)
downloadrails-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.md2
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
```