From 40290aed57e3da502ac29cb2948c25928df44e1b Mon Sep 17 00:00:00 2001 From: Juliet Eyraud <103968576+juliet-e@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:58:16 -0500 Subject: [PATCH] fix typo in customizing_json lesson --- module3/lessons/customizing_json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module3/lessons/customizing_json.md b/module3/lessons/customizing_json.md index 6b6cc448..c64a28d0 100644 --- a/module3/lessons/customizing_json.md +++ b/module3/lessons/customizing_json.md @@ -73,7 +73,7 @@ And now with our migrations run, let us add the relationships to our models. ```ruby has_many :store_books -has many :stores, through: :store_books +has_many :stores, through: :store_books ``` *app/models/store.rb*