Skip to content

Commit 6444546

Browse files
author
Mehdi Rahimi
authored
Minor misspelling
1 parent 8938054 commit 6444546

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

strategy/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public class App {
127127
// Java 8 functional implementation Strategy pattern
128128
LOGGER.info(GREEN_DRAGON_SPOTTED);
129129
dragonSlayer = new DragonSlayer(
130-
() -> LOGGER.info("With your Excalibur you severe the dragon's head!"));
130+
() -> LOGGER.info("With your Excalibur you sever the dragon's head!"));
131131
dragonSlayer.goToBattle();
132132
LOGGER.info(RED_DRAGON_EMERGES);
133133
dragonSlayer.changeStrategy(() -> LOGGER.info(
@@ -162,13 +162,13 @@ Program output:
162162
13:06:36.634 [main] INFO com.iluwatar.strategy.App -- Black dragon lands before you.
163163
13:06:36.634 [main] INFO com.iluwatar.strategy.SpellStrategy -- You cast the spell of disintegration and the dragon vaporizes in a pile of dust!
164164
13:06:36.634 [main] INFO com.iluwatar.strategy.App -- Green dragon spotted ahead!
165-
13:06:36.634 [main] INFO com.iluwatar.strategy.App -- With your Excalibur you severe the dragon's head!
165+
13:06:36.634 [main] INFO com.iluwatar.strategy.App -- With your Excalibur you sever the dragon's head!
166166
13:06:36.634 [main] INFO com.iluwatar.strategy.App -- Red dragon emerges.
167167
13:06:36.635 [main] INFO com.iluwatar.strategy.App -- You shoot the dragon with the magical crossbow and it falls dead on the ground!
168168
13:06:36.635 [main] INFO com.iluwatar.strategy.App -- Black dragon lands before you.
169169
13:06:36.635 [main] INFO com.iluwatar.strategy.App -- You cast the spell of disintegration and the dragon vaporizes in a pile of dust!
170170
13:06:36.635 [main] INFO com.iluwatar.strategy.App -- Green dragon spotted ahead!
171-
13:06:36.637 [main] INFO com.iluwatar.strategy.LambdaStrategy -- With your Excalibur you severe the dragon's head!
171+
13:06:36.637 [main] INFO com.iluwatar.strategy.LambdaStrategy -- With your Excalibur you sever the dragon's head!
172172
13:06:36.637 [main] INFO com.iluwatar.strategy.App -- Red dragon emerges.
173173
13:06:36.637 [main] INFO com.iluwatar.strategy.LambdaStrategy -- You shoot the dragon with the magical crossbow and it falls dead on the ground!
174174
13:06:36.637 [main] INFO com.iluwatar.strategy.App -- Black dragon lands before you.

0 commit comments

Comments
 (0)