From 5737cf9ce0e6cb56ff48725b784a00258c5f2426 Mon Sep 17 00:00:00 2001 From: Majid Alaeinia <11965368+majidalaeinia@users.noreply.github.com> Date: Wed, 5 Jun 2024 04:55:01 +0330 Subject: [PATCH] Update association_basics.md --- guides/source/association_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/association_basics.md b/guides/source/association_basics.md index 5d9af314285..e88c3716dfd 100644 --- a/guides/source/association_basics.md +++ b/guides/source/association_basics.md @@ -2975,7 +2975,7 @@ Delegated types solves this problem, via `delegated_type`. In order to use delegated types, we have to model our data in a particular way. The requirements are as follows: -* There is a superclass that stores shared attributes among all subclasses in it's table. +* There is a superclass that stores shared attributes among all subclasses in its table. * Each subclass must inherit from the super class, and will have a separate table for any additional attributes specific to it. This eliminates the need to define attributes in a single table that are unintentionally shared among all subclasses.