aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-04-16 07:36:42 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-04-16 07:46:49 +0530
commit34ce4935d0c2cf55f21564a1ef087c1cc2bae934 (patch)
treeff11254d3f343ae046aecad0a68fe5b041b10f0c /activerecord
parent85ecb4461d0002c4044ef9f4bcca55af956a85fb (diff)
downloadrails-34ce4935d0c2cf55f21564a1ef087c1cc2bae934.tar.gz
rails-34ce4935d0c2cf55f21564a1ef087c1cc2bae934.tar.bz2
rails-34ce4935d0c2cf55f21564a1ef087c1cc2bae934.zip
Fixed typos in AR CHANGELOG
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 062c548f20..61c217857d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -41,8 +41,8 @@
relation all the context that `Post` was joined with `Author` is lost and hence the error
that `author` was not found on `Comment`.
- Ths solution is to build JoinAssociation when two relations with join information are being
- merged. And later while building the arel use the previously built `JoinAssociation` record
+ The solution is to build `JoinAssociation` when two relations with join information are being
+ merged. And later while building the Arel use the previously built `JoinAssociation` record
in `JoinDependency#graft` to build the right from clause.
Fixes #3002.
@@ -106,8 +106,8 @@
*kennyj*
* Allow `ActiveRecord::Base.connection_handler` to have thread affinity and be
- settable, this effectively allows Active Record to be used in a multi threaded
- setup with multiple connections to multiple dbs.
+ settable, this effectively allows Active Record to be used in a multithreaded
+ setup with multiple connections to multiple databases.
*Sam Saffron*