aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAkshay Mohite <akshaymohite31@yahoo.com>2019-08-01 18:08:13 +0530
committerAkshay Mohite <akshaymohite31@yahoo.com>2019-08-01 18:09:35 +0530
commitc27be3bf21597c19b52db2ffacbd021b15f6df9f (patch)
treec0322652cbeb4be5481973287668d71b14f81489 /guides
parentb3b3ff5dfdfa378a06f04557f7f9861e781abb0b (diff)
downloadrails-c27be3bf21597c19b52db2ffacbd021b15f6df9f.tar.gz
rails-c27be3bf21597c19b52db2ffacbd021b15f6df9f.tar.bz2
rails-c27be3bf21597c19b52db2ffacbd021b15f6df9f.zip
Added missing comment notation for the example of form_with in form_helpers.md documentation. [ci skip]
Diffstat (limited to 'guides')
-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 6418005921..bee6755b52 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -307,7 +307,7 @@ When dealing with RESTful resources, calls to `form_with` can get significantly
## Creating a new article
# long-style:
form_with(model: @article, url: articles_path)
-short-style:
+# short-style:
form_with(model: @article)
## Editing an existing article