[ci skip] fix typos

This commit is contained in:
Mikhail Dieterle 2016-02-14 19:17:03 +03:00
parent f847f342f4
commit c0bbfdb48e

@ -713,7 +713,7 @@ By default, Active Record doesn't know about the connection between these associ
```ruby ```ruby
a = Author.first a = Author.first
b = c.books.first b = a.books.first
a.first_name == b.author.first_name # => true a.first_name == b.author.first_name # => true
a.first_name = 'Manny' a.first_name = 'Manny'
a.first_name == b.author.first_name # => false a.first_name == b.author.first_name # => false
@ -734,8 +734,8 @@ end
With these changes, Active Record will only load one copy of the author object, preventing inconsistencies and making your application more efficient: With these changes, Active Record will only load one copy of the author object, preventing inconsistencies and making your application more efficient:
```ruby ```ruby
a = author.first a = Author.first
b = c.books.first b = a.books.first
a.first_name == b.author.first_name # => true a.first_name == b.author.first_name # => true
a.first_name = 'Manny' a.first_name = 'Manny'
a.first_name == b.author.first_name # => true a.first_name == b.author.first_name # => true