From db5f721fece175160ee8f03637cb4169dfbfb93a Mon Sep 17 00:00:00 2001 From: Robb Shecter Date: Thu, 2 May 2024 09:03:51 -0600 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8728703..a587a0b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ end me = Person.new(name: 'Robb') ``` -Note how Person's two lines of code are nothing new: `attr_reader` is standard Ruby. [`validates` is standard Rails. I use classes like these as Data Transfer Objects at my system boundaries. +Note how Person's two lines of code are nothing new: `attr_reader` is standard Ruby. [`validates`](https://guides.rubyonrails.org/active_record_validations.html) is standard Rails. I use classes like these as Data Transfer Objects at my system boundaries. ## Goals