From e9225a9ca8c925825f770f4cc94a24bac8a17742 Mon Sep 17 00:00:00 2001 From: Jeremy Vyska <35526546+JeremyVyska@users.noreply.github.com> Date: Fri, 6 May 2022 12:04:12 +0200 Subject: [PATCH] Update content/docs/patterns/template-method-pattern/index.md Co-authored-by: Henrik Helgesen --- content/docs/patterns/template-method-pattern/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/patterns/template-method-pattern/index.md b/content/docs/patterns/template-method-pattern/index.md index a2770d3d..ba7fde3f 100644 --- a/content/docs/patterns/template-method-pattern/index.md +++ b/content/docs/patterns/template-method-pattern/index.md @@ -13,7 +13,7 @@ The goal of this pattern is to simplify the solution of similar problems and mak In nearly every app you have sometimes to solve similar problems for diferent cases. Mostly not the same developer will solve every case. This results in diferent solutions. ## Description -The pattner is used when you have problems which are independent but require the same logical flow. Examples which occure very often are: Posting Documents, Printing Reports or Exporting Data. +The pattern is used when you have problems which are independent but require the same logical flow. Examples which occur very often are: _Posting Documents_, _Printing Reports_ or _Exporting Data_. ## Bad Code Example ```al