Veraticus / Dynamoid

Ruby ORM for Amazon's DynamoDB
http://joshsymonds.com/Dynamoid/
247 stars 83 forks source link

Fixed typo in README.markdown in Associations example #172

Open ralexstokes opened 10 years ago

ralexstokes commented 10 years ago

Existing README.markdown has an error in the Associations section. The Address model has association

belongs_to :address

where the correct association should link the Address model to the User model.

belongs_to :user

This pull request fixes this typo.