From 8a4eca4d58547e7f3bc2c98c2a855e780015a8ed Mon Sep 17 00:00:00 2001 From: Soren Klemmensen Date: Mon, 20 Feb 2023 17:28:34 +0100 Subject: [PATCH] Update index.md Broken link. --- content/docs/BestPractices/SubscriberCodeunits/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/BestPractices/SubscriberCodeunits/index.md b/content/docs/BestPractices/SubscriberCodeunits/index.md index 8c03a40b..b37cf69c 100644 --- a/content/docs/BestPractices/SubscriberCodeunits/index.md +++ b/content/docs/BestPractices/SubscriberCodeunits/index.md @@ -21,7 +21,7 @@ Let's discuss all points Every time a subscriber gets called, a new instance of the codeunit is being loaded in memory, which takes memory and processing power. The smaller the codeunit, the less memory, and the faster it is. -Therefore, it's suggested to split the subscribers by functionality and avoid putting business logic in the actual codeunit. Tip: put all business logic in an "[Method Codeunit](https://alguidelines.dev/bcpatterns/generic-method-pattern/)". +Therefore, it's suggested to split the subscribers by functionality and avoid putting business logic in the actual codeunit. Tip: put all business logic in an "[Method Codeunit](https://alguidelines.dev/docs/patterns/generic-method-pattern/)". Examples: @@ -198,4 +198,4 @@ Avoid subscribers to these events. ## References -The [Generic Method Pattern](https://alguidelines.dev/bcpatterns/generic-method-pattern/) \ No newline at end of file +The [Generic Method Pattern](https://alguidelines.dev/bcpatterns/generic-method-pattern/)