diff options
author | dharmatech <wayo.cavazos@gmail.com> | 2011-09-07 20:23:28 -0500 |
---|---|---|
committer | dharmatech <wayo.cavazos@gmail.com> | 2011-09-07 20:23:28 -0500 |
commit | f50aeda2f73b47c47664e3651c638ba624418b8b (patch) | |
tree | ee5b9f7cd3a05cf4bc0fd59b8229f5eaafe84635 /railties | |
parent | 190a2bf9c482fef8412982ea31a755d7e59f17b6 (diff) | |
download | rails-f50aeda2f73b47c47664e3651c638ba624418b8b.tar.gz rails-f50aeda2f73b47c47664e3651c638ba624418b8b.tar.bz2 rails-f50aeda2f73b47c47664e3651c638ba624418b8b.zip |
getting_started.textile section 6: Correct file names in table
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/getting_started.textile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index e3488cee1f..f4a61482c6 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -549,9 +549,9 @@ folders, and edit <tt>config/routes.rb</tt>. Here's a quick overview of what it |app/views/posts/new.html.erb |A view to create a new post| |app/views/posts/_form.html.erb |A partial to control the overall look and feel of the form used in edit and new views| |app/helpers/posts_helper.rb |Helper functions to be used from the post views| -|app/assets/stylesheets/scaffold.css.scss |Cascading style sheet to make the scaffolded views look better| -|app/assets/stylesheets/post.css.scss |Cascading style sheet for the posts controller| -|app/assets/javascripts/post.js.coffee |CoffeeScript for the posts controller| +|app/assets/stylesheets/scaffolds.css.scss |Cascading style sheet to make the scaffolded views look better| +|app/assets/stylesheets/posts.css.scss |Cascading style sheet for the posts controller| +|app/assets/javascripts/posts.js.coffee |CoffeeScript for the posts controller| |test/unit/post_test.rb |Unit testing harness for the posts model| |test/functional/posts_controller_test.rb |Functional testing harness for the posts controller| |test/unit/helpers/posts_helper_test.rb |Unit testing harness for the posts helper| |