diff --git a/docs/tinyorm/relationships.mdx b/docs/tinyorm/relationships.mdx index 6679a16c2..0f5640216 100644 --- a/docs/tinyorm/relationships.mdx +++ b/docs/tinyorm/relationships.mdx @@ -86,7 +86,7 @@ First, you have to extend the `Model`, it is a common However, the second parameter is more interesting, here you have to provide a type-id of all related models. The TinyORM needs these types to store relationships in the hash. -Next, you have to define the `u_relations` hash, which maps a relation name to the relationship method. 🔥🚀🙌 +Next, you have to define the `u_relations` hash, which maps relation names to relationship methods. 🔥🚀🙌 :::tip You may omit the `friend Model` declaration and define all the private data and function members as public.