Skip to content

Commit

Permalink
A Relation is not a collection of records. So let's not use the term …
Browse files Browse the repository at this point in the history
…"record"
  • Loading branch information
amatsuda committed Jan 4, 2013
1 parent 034982e commit a802fa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/source/active_record_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ Active Record provides a rich API for accessing data within a database. Below
are a few examples of different data access methods provided by Active Record.

```ruby
# return a collection with all records
# return a collection with all users
users = User.all
```

```ruby
# return the first record
# return the first user
user = User.first
```

Expand Down

0 comments on commit a802fa3

Please sign in to comment.