From f4b53bdd454b26b858fb33eec1274dc816cd3484 Mon Sep 17 00:00:00 2001 From: Jeremy Vyska <35526546+JeremyVyska@users.noreply.github.com> Date: Fri, 6 May 2022 12:04:06 +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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/docs/patterns/template-method-pattern/index.md b/content/docs/patterns/template-method-pattern/index.md index 27663738..a2770d3d 100644 --- a/content/docs/patterns/template-method-pattern/index.md +++ b/content/docs/patterns/template-method-pattern/index.md @@ -7,8 +7,7 @@ categories: ["Pattern"] _Created by Patrick Schiefer, Described by Patrick Schiefer_ ## Abstract -The goal of this pattern is too simplify the solution of similar problems and make your code more readable - +The goal of this pattern is to simplify the solution of similar problems and make your code more readable. ## Problem 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.