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:12 +02:00 committed by GitHub
parent f4b53bdd45
commit e9225a9ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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. 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 ## 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 ## Bad Code Example
```al ```al