From 6595fa043f37f92a67f48750505fd5febb6c7645 Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 19 Jul 2023 19:52:09 +0200 Subject: [PATCH] docs fixtypo [skip ci] --- docs/tinyorm/relationships.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.