diff options
author | Xavier Noria <fxn@hashref.com> | 2013-04-14 20:39:07 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-04-14 20:39:07 +0200 |
commit | 6b3bc33e1cb85cb55d1d15c6aa9cf241bd8c2ee2 (patch) | |
tree | f1f3f914c85b6825efbebd5c9472ceba968dfa59 | |
parent | 933ea218116645eafaf3b7ea5695520db0f9d9ba (diff) | |
download | rails-6b3bc33e1cb85cb55d1d15c6aa9cf241bd8c2ee2.tar.gz rails-6b3bc33e1cb85cb55d1d15c6aa9cf241bd8c2ee2.tar.bz2 rails-6b3bc33e1cb85cb55d1d15c6aa9cf241bd8c2ee2.zip |
ActiveRecord -> Active Record
As per the Rails documentation guidelines.
-rw-r--r-- | History.txt | 4 | ||||
-rw-r--r-- | README.markdown | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/History.txt b/History.txt index 66e2c73be7..88cfecd5ea 100644 --- a/History.txt +++ b/History.txt @@ -184,7 +184,7 @@ * Introduced "SQL compilers" for query generation. * Added support for Oracle (Raimonds Simanovskis) and IBM/DB (Praveen Devarao). - * Improvements to give better support to ActiveRecord. + * Improvements to give better support to Active Record. == 0.2.1 / 2010-02-05 @@ -195,7 +195,7 @@ == 0.2.0 / 2010-01-31 * Ruby 1.9 compatibility - * Many improvements to support the Arel integration into ActiveRecord (see `git log v0.1.0..v0.2.0`) + * Many improvements to support the Arel integration into Active Record (see `git log v0.1.0..v0.2.0`) * Thanks to Emilio Tagua and Pratik Naik for many significant contributions! == 0.1.0 / 2009-08-06 diff --git a/README.markdown b/README.markdown index 70b378ff33..d7ed9004fd 100644 --- a/README.markdown +++ b/README.markdown @@ -15,7 +15,7 @@ database compatibility and query generation. ## Status -For the moment, Arel uses ActiveRecord's connection adapters to connect to the various engines, connection pooling, perform quoting, and do type conversion. +For the moment, Arel uses Active Record's connection adapters to connect to the various engines, connection pooling, perform quoting, and do type conversion. ## A Gentle Introduction |