Update content/docs/patterns/template-method-pattern/index.md

Co-authored-by: Henrik Helgesen <henrik@helgesen.consulting>
This commit is contained in:
Jeremy Vyska 2022-05-06 12:04:06 +02:00 committed by GitHub
parent 691c2fd48f
commit f4b53bdd45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.