diff --git a/Mage.Sets/src/mage/cards/s/SuqAtaFirewalker.java b/Mage.Sets/src/mage/cards/s/SuqAtaFirewalker.java
index 9cef7b5336..5e2b61550c 100644
--- a/Mage.Sets/src/mage/cards/s/SuqAtaFirewalker.java
+++ b/Mage.Sets/src/mage/cards/s/SuqAtaFirewalker.java
@@ -34,7 +34,7 @@ public class SuqAtaFirewalker extends CardImpl {
color.setBlue(true);
- // Suq'Ata Firewalker can't be the target of black spells or abilities from black sources.
+ // Suq'Ata Firewalker can't be the target of red spells or abilities from red sources.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeTargetedSourceEffect(filterRed, Duration.WhileOnBattlefield)));
//{T}: Suq'Ata Firewalker deals 1 damage to target creature or player.
diff --git a/Mage/src/main/java/mage/abilities/keyword/ExertAbility.java b/Mage/src/main/java/mage/abilities/keyword/ExertAbility.java
index 70bbcbbb19..658577f3eb 100644
--- a/Mage/src/main/java/mage/abilities/keyword/ExertAbility.java
+++ b/Mage/src/main/java/mage/abilities/keyword/ExertAbility.java
@@ -69,14 +69,14 @@ public class ExertAbility extends SimpleStaticAbility {
: "You may exert {this}") + " as it attacks. ";
if (ability != null) {
this.addSubAbility(ability);
- ruleText += ("When you do,");
- ability.getEffects().stream().forEach((effect) -> {
+ ruleText += "When you do,";
+ ability.getEffects().forEach(effect -> {
ruleText += " " + effect.getText(ability.getModes().getMode());
});
ruleText += ". ";
ability.setRuleVisible(false);
}
- ruleText += "(An exterted creature can't untap during your next untap step)";
+ ruleText += "(An exerted creature can't untap during your next untap step)";
if (exertOnlyOncePerTurn) {
getWatchers().add(new ExertedThisTurnWatcher());
}
@@ -142,7 +142,7 @@ class ExertReplacementEffect extends ReplacementEffectImpl {
}
}
if (controller.chooseUse(outcome, "Exert " + creature.getLogName() + '?',
- "An exterted creature can't untap during your next untap step.", "Yes", "No", source, game)) {
+ "An exerted creature can't untap during your next untap step.", "Yes", "No", source, game)) {
if (!game.isSimulation()) {
game.informPlayers(controller.getLogName() + " exerted " + creature.getName());
}