From 98942ccc3ba1d8c4dd5e4162778f1ef415d4381c Mon Sep 17 00:00:00 2001 From: Xymph Date: Tue, 23 Aug 2022 22:22:18 +0200 Subject: [PATCH] Split run-on sentence into 2 sentences --- pages/Design-Patterns.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Design-Patterns.md b/pages/Design-Patterns.md index 593c9b5..7b80ea9 100644 --- a/pages/Design-Patterns.md +++ b/pages/Design-Patterns.md @@ -166,8 +166,8 @@ class SomeClient } {% endhighlight %} -The calling client class above has a private property which must be set at runtime and be of type 'OutputInterface' -once this property is set a call to loadOutput() will call the load() method in the concrete class of the output type +The calling client class above has a private property which must be set at runtime and be of type 'OutputInterface'. +Once this property is set a call to loadOutput() will call the load() method in the concrete class of the output type that has been set. {% highlight php %}