From a7d8078a2b40a54cd4e924a5c4681260db590f21 Mon Sep 17 00:00:00 2001 From: Daniel Bomar Date: Sat, 19 Dec 2020 12:48:52 -0600 Subject: [PATCH] Spelling/grammar fixup --- Mage.Sets/src/mage/cards/s/StartYourEngines.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/StartYourEngines.java b/Mage.Sets/src/mage/cards/s/StartYourEngines.java index 18e9b05e7a3..396bc114030 100644 --- a/Mage.Sets/src/mage/cards/s/StartYourEngines.java +++ b/Mage.Sets/src/mage/cards/s/StartYourEngines.java @@ -43,7 +43,7 @@ class StartYourEnginesEffect extends ContinuousEffectImpl { public StartYourEnginesEffect() { super(Duration.EndOfTurn, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.BecomeCreature); - staticText = "Vehicles you control becomes artifact creatures until end of turn"; + staticText = "Vehicles you control become artifact creatures until end of turn"; } public StartYourEnginesEffect(final StartYourEnginesEffect effect) { @@ -61,7 +61,7 @@ class StartYourEnginesEffect extends ContinuousEffectImpl { if (permanent != null && permanent.hasSubtype(SubType.VEHICLE, game)) { if (sublayer == SubLayer.NA) { permanent.addCardType(CardType.ARTIFACT); - permanent.addCardType(CardType.CREATURE);// TODO: Chcek if giving CREATURE Type is correct + permanent.addCardType(CardType.CREATURE);// TODO: Check if giving CREATURE Type is correct } } }