Skip to content

Commit

Permalink
Fix a small typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
planetmcd committed Feb 6, 2015
1 parent 0900792 commit cc21a06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -10,7 +10,7 @@
Temping allows you to create arbitrary ActiveRecord models backed by a temporary
SQL table for use in tests. You may need to do something like this if you're
testing a module that is meant to be mixed into ActiveReord models without
relaying on a concrete class.
relying on a concrete class.

Temping will use your existing database connection. As we're using temporary
tables all data will be dropped when the database connection is terminated.
Expand Down Expand Up @@ -40,7 +40,7 @@ Temping.create :dog do
end
end

Dog.create
Dog.create

# => #<Dog id: 1, name: nil, age: nil, weight: nil>
```
Expand Down

0 comments on commit cc21a06

Please sign in to comment.