From bb1199ffebf26dac99705e08742370ea9620b959 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Tue, 21 Jan 2014 14:06:34 -0600 Subject: [PATCH] Fixed typo in README.markdown in Associations example --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 9d58d3e..e0355a4 100644 --- a/README.markdown +++ b/README.markdown @@ -187,7 +187,7 @@ class Address ... - belongs_to :address # Automatically links up with the user model + belongs_to :user # Automatically links up with the user model end ```