aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2010-04-25 17:22:39 +1000
committerMikel Lindsaar <raasdnil@gmail.com>2010-04-25 17:22:39 +1000
commit8ae5cc8380bf52990ca4b694e2a7acb7d1972f83 (patch)
treea0eec51a58b5ef5dc2e521020d14a06d5e8ec651 /railties/guides/source/getting_started.textile
parente1b255aca456a5b456111b09237805fd32d15111 (diff)
downloadrails-8ae5cc8380bf52990ca4b694e2a7acb7d1972f83.tar.gz
rails-8ae5cc8380bf52990ca4b694e2a7acb7d1972f83.tar.bz2
rails-8ae5cc8380bf52990ca4b694e2a7acb7d1972f83.zip
Fixing typo in guide, updating ActionMailer description and making the contributors list alphabetical
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile5
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 6052ac737a..df07255939 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -91,7 +91,7 @@ Action Dispatch handles routing of web requests and dispatches them as you want,
h5. Action Mailer
-Action Mailer is a framework for building e-mail services. You can use Action Mailer to send emails based on flexible templates, or to receive and process incoming email.
+Action Mailer is a framework for building e-mail services. You can use Action Mailer to receive and process incoming email and send simple plain text or complex multipart emails based on flexible templates.
h5. Active Model
@@ -1128,7 +1128,7 @@ Then you make the +app/views/posts/show.html.erb+ look like the following:
The second render just defines the partial template we want to render, <tt>comments/form</tt>, Rails is smart enough to spot the forward slash in that string and realise that you want to render the <tt>_form.html.erb</tt> file in the <tt>app/views/comments</tt> directory.
-The +@post+ object is available any partials rendered in the view because we defined it as an instance variable.
+The +@post+ object is available to any partials rendered in the view because we defined it as an instance variable.
h3. Deleting Comments
@@ -1440,6 +1440,7 @@ h3. Changelog
"Lighthouse ticket":http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/2
+* April 25, 2010: Couple of more minor fixups "Mikel Lindsaar":credits:html#raasdnil
* April 1, 2010: Fixed document to validate XHTML 1.0 Strict. "Jaime Iniesta":http://jaimeiniesta.com
* February 8, 2010: Full re-write for Rails 3.0-beta, added helpers and before_filters, refactored code by "Mikel Lindsaar":credits:html#raasdnil
* January 24, 2010: Re-write for Rails 3.0 by "Mikel Lindsaar":credits:html#raasdnil