We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 100a72a + b14aff1 commit 9074a9cCopy full SHA for 9074a9c
strategy/src/main/java/com/iluwatar/strategy/MeleeStrategy.java
@@ -31,6 +31,6 @@ public class MeleeStrategy implements DragonSlayingStrategy {
31
32
@Override
33
public void execute() {
34
- System.out.println("With your Excalibur you severe the dragon's head!");
+ System.out.println("With your Excalibur you sever the dragon's head!");
35
}
36
strategy/src/test/java/com/iluwatar/strategy/DragonSlayingStrategyTest.java
@@ -52,7 +52,7 @@ public static Collection<Object[]> data() {
52
return Arrays.asList(
53
new Object[]{
54
new MeleeStrategy(),
55
- "With your Excalibur you severe the dragon's head!"
+ "With your Excalibur you sever the dragon's head!"
56
},
57
58
new ProjectileStrategy(),
0 commit comments