From 9459dd3e1918290bc2fc303c5ca677ded0c5a7c5 Mon Sep 17 00:00:00 2001 From: Tac Tacelosky Date: Tue, 7 Mar 2023 08:27:17 -0500 Subject: [PATCH] tweak language --- docs/translatable.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/translatable.md b/docs/translatable.md index 89588772..0319dadb 100644 --- a/docs/translatable.md +++ b/docs/translatable.md @@ -6,7 +6,7 @@ same folder, e.g.: - `app/Entity/Category.php` - `app/Entity/CategoryTranslation.php` -The default naming convention (or its customization via trait methods) avoids you to manually handle entity associations. It is handled automatically by the `TranslatableEventSubscriber`. +The default naming convention (or its customization via trait methods) avoids you having to manually handle entity associations. It is handled automatically by the `TranslatableEventSubscriber`. [How to use translatable with api platform?](/docs/translatable-api-platform.md) @@ -228,4 +228,4 @@ No joins are created. Only the query strategy is changed. |------------|------------------------------------------------------------------------------------------------------------------------------------| | EAGER | Doctrine always loads the translation. | | LAZY | Doctrine only loads the translation if it's actually used. | -| EXTRA_LAZY | Doctrine only loads the translation if the data is specifically queried. Count and/or contains queries do not trigger new queries. | \ No newline at end of file +| EXTRA_LAZY | Doctrine only loads the translation if the data is specifically queried. Count and/or contains queries do not trigger new queries. |