Skip to content

Commit 9074a9c

Browse files
committed
Merge branch 'saifulazad-patch-1'
2 parents 100a72a + b14aff1 commit 9074a9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

strategy/src/main/java/com/iluwatar/strategy/MeleeStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ public class MeleeStrategy implements DragonSlayingStrategy {
3131

3232
@Override
3333
public void execute() {
34-
System.out.println("With your Excalibur you severe the dragon's head!");
34+
System.out.println("With your Excalibur you sever the dragon's head!");
3535
}
3636
}

strategy/src/test/java/com/iluwatar/strategy/DragonSlayingStrategyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static Collection<Object[]> data() {
5252
return Arrays.asList(
5353
new Object[]{
5454
new MeleeStrategy(),
55-
"With your Excalibur you severe the dragon's head!"
55+
"With your Excalibur you sever the dragon's head!"
5656
},
5757
new Object[]{
5858
new ProjectileStrategy(),

0 commit comments

Comments
 (0)