aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides
diff options
context:
space:
mode:
authorGeorge Ogata <george.ogata@gmail.com>2008-11-03 04:36:21 +1100
committerGeorge Ogata <george.ogata@gmail.com>2008-11-03 04:36:21 +1100
commitdce9455f1b7fa53afe798248a6504e9f95fae581 (patch)
treed5204a49338596bdfc9aabe1d5ba6c5db153efff /railties/doc/guides
parent93b647ca7b66ddc1eabb865b55c2e26d46d62909 (diff)
downloadrails-dce9455f1b7fa53afe798248a6504e9f95fae581.tar.gz
rails-dce9455f1b7fa53afe798248a6504e9f95fae581.tar.bz2
rails-dce9455f1b7fa53afe798248a6504e9f95fae581.zip
Fix typo in AR Basics guide.
Diffstat (limited to 'railties/doc/guides')
-rw-r--r--railties/doc/guides/source/active_record_basics.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/active_record_basics.txt b/railties/doc/guides/source/active_record_basics.txt
index 15fc544f25..892adb2d43 100644
--- a/railties/doc/guides/source/active_record_basics.txt
+++ b/railties/doc/guides/source/active_record_basics.txt
@@ -1,7 +1,7 @@
Active Record Basics
====================
-Active Record is a design pattern that mitigates the mind-numbing mental gymnastics often needed to get your application to communicate with a database. This guide uses a mix of real-world examples, metaphors and detailed explanations of the actual Rails source code to help you make the most of AcitveRecord.
+Active Record is a design pattern that mitigates the mind-numbing mental gymnastics often needed to get your application to communicate with a database. This guide uses a mix of real-world examples, metaphors and detailed explanations of the actual Rails source code to help you make the most of ActiveRecord.
After reading this guide readers should have a strong grasp of the Active Record pattern and how it can be used with or without Rails. Hopefully, some of the philosophical and theoretical intentions discussed here will also make them a stronger and better developer.