spelling and grammar fix in DeckEditorShop.java

This commit is contained in:
slapshot5
2012-01-30 01:17:51 +00:00
parent 59b7b9087c
commit 4fc53aac94

View File

@@ -339,7 +339,7 @@ public final class DeckEditorShop extends DeckEditorBase {
for (final CardPrinted card : deck.getDeck().getMain().toFlatList()) { for (final CardPrinted card : deck.getDeck().getMain().toFlatList()) {
this.getBottomTableWithCards().addCard(card); this.getBottomTableWithCards().addCard(card);
} }
JOptionPane.showMessageDialog(null, String.format("Deck '%s' was added to youd decklist.%n%nCards from it were also added to your pool.", deck.getName()), "Thanks for purchase!", JOptionPane.INFORMATION_MESSAGE); JOptionPane.showMessageDialog(null, String.format("Deck '%s' was added to your decklist.%n%nCards from it were also added to your pool.", deck.getName()), "Thanks for purchasing!", JOptionPane.INFORMATION_MESSAGE);
} }