diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-05-16 17:52:10 +1000 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-05-16 18:05:35 +1000 |
commit | 9073cf85dbab49fe845225b62129929938f0c7c9 (patch) | |
tree | 691d26f79a0796d35882cc23c986cfe3a0a9abf6 | |
parent | 10dfbaa9db6c54e89468a41c24dbbecf58fc430c (diff) | |
download | rails-9073cf85dbab49fe845225b62129929938f0c7c9.tar.gz rails-9073cf85dbab49fe845225b62129929938f0c7c9.tar.bz2 rails-9073cf85dbab49fe845225b62129929938f0c7c9.zip |
[getting started] some more handholding around where exactly the error would appear when a post is invalid
-rw-r--r-- | guides/source/getting_started.textile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index aad6a30705..5c5e73c1d1 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -767,7 +767,8 @@ TIP: Rails automatically wraps fields that contain an error with a div with class +field_with_errors+. You can define a css rule to make them standout. -Now you'll get a nice error message when saving a post without title: +Now you'll get a nice error message when saving a post without title when you +attempt to do just that on the "new post form(http://localhost:3000/posts/new)":http://localhost:3000/posts/new. !images/getting_started/form_with_errors.png(Form With Errors)! |