From 4b05de19aaebcbe20941e8b13aaed2060759ed1c Mon Sep 17 00:00:00 2001 From: Derek Willis Date: Sun, 13 Jun 2010 22:36:42 -0400 Subject: [PATCH] updated active record querying guide to standardize on first_name for Client --- railties/guides/source/active_record_querying.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railties/guides/source/active_record_querying.textile b/railties/guides/source/active_record_querying.textile index 1b39f91eb1..73f3ebafbe 100644 --- a/railties/guides/source/active_record_querying.textile +++ b/railties/guides/source/active_record_querying.textile @@ -86,7 +86,7 @@ Using Model.find(primary_key), you can retrieve the object correspondin # Find the client with primary key (id) 10. client = Client.find(10) -=> # "Ryan"> +=> # "Ryan"> SQL equivalent of the above is: -- GitLab