diff --git a/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java b/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java index 4019ec5c8d..ce47f8752f 100644 --- a/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java +++ b/Mage.Sets/src/mage/cards/c/CloakOfInvisibility.java @@ -41,9 +41,9 @@ public final class CloakOfInvisibility extends CardImpl { // Enchanted creature has phasing and can't be blocked except by Walls. ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(PhasingAbility.getInstance(), AttachmentType.AURA).setText("Enchanted creature has phasing ")); ability.addEffect(new CantBeBlockedByCreaturesAttachedEffect(Duration.WhileOnBattlefield, filter, AttachmentType.AURA) - .setText("and can’t be blocked except by Walls. " + + .setText("and can't be blocked except by Walls. " + "(It phases in or out before its controller untaps during each of their untap steps. " + - "While it’s phased out, it’s treated as though it doesn’t exist.)")); + "While it's phased out, it's treated as though it doesn't exist.)")); this.addAbility(ability); }