aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-10-24 15:24:15 -0700
committerZachary Scott <e@zzak.io>2014-10-24 15:24:15 -0700
commit314f320c781c8dad0fef68d6431ded3dc70eaf42 (patch)
tree44e5b8010812e0f7a5005d09955a6de44cfd8d96
parentcd2d3664e3b434d15b6c19e652befb386187642f (diff)
parent1cfe432e178fb207962ee62f3a56b67aee4b27a3 (diff)
downloadrails-314f320c781c8dad0fef68d6431ded3dc70eaf42.tar.gz
rails-314f320c781c8dad0fef68d6431ded3dc70eaf42.tar.bz2
rails-314f320c781c8dad0fef68d6431ded3dc70eaf42.zip
Merge pull request #17385 from nakadai/patch-1
Fix typo in "Active Record Basics" guide. [ci skip]
-rw-r--r--guides/source/active_record_basics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md
index ecf3483d7e..bd074d0055 100644
--- a/guides/source/active_record_basics.md
+++ b/guides/source/active_record_basics.md
@@ -31,7 +31,7 @@ Object Relational Mapping system.
in his book _Patterns of Enterprise Application Architecture_. In
Active Record, objects carry both persistent data and behavior which
operates on that data. Active Record takes the opinion that ensuring
-data access logic is part of the object will educate users of that
+data access logic as part of the object will educate users of that
object on how to write to and read from the database.
### Object Relational Mapping