From bcf1a7aeae88c667f73d058e068b6279ffd57952 Mon Sep 17 00:00:00 2001 From: poly000 <34085039+poly000@users.noreply.github.com> Date: Sat, 8 Jan 2022 23:18:44 +0800 Subject: [PATCH] fix typo (#289) --- patterns/behavioural/strategy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/behavioural/strategy.md b/patterns/behavioural/strategy.md index a1ea98d..a5aac8d 100644 --- a/patterns/behavioural/strategy.md +++ b/patterns/behavioural/strategy.md @@ -22,7 +22,7 @@ Imagine we are working on a project that generates reports every month. We need the reports to be generated in different formats (strategies), e.g., in `JSON` or `Plain Text` formats. But things vary over time, and we don't know what kind of requirement we may get -in the future. For example, we may need to generate our report in a completly new +in the future. For example, we may need to generate our report in a completely new format, or just modify one of the existing formats. ## Example