From 6715acb1999b6490fb8ee2fd157c96f8d0e7ef13 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Sun, 27 Jun 2021 01:21:12 +0000 Subject: [PATCH] Update README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 5fff5a8..a5841af 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,7 @@ Stage One, or "S1" for short is the first stage in LLO. This stage deconstructs The term "dctor" is typically refered to class deconstructors, however in the usage in this proposal it refers to file format deconstruction. I went with the "strategy pattern" with my file format deconstruction. -``` -In computer programming, the strategy pattern is a behavioral software design pattern that enables selecting an algorithm at runtime. Instead of implementing a single algorithm directly, code receives run-time instructions as to which in a family of algorithms to use. - +*"In computer programming, the strategy pattern is a behavioral software design pattern that enables selecting an algorithm at runtime. Instead of implementing a single algorithm directly, code receives run-time instructions as to which in a family of algorithms to use.* - https://en.wikipedia.org/wiki/Strategy_pattern -``` This is ideal for deconstruction algorithms as there can be different files to deconstruct and thus different algorithms must run.