Editing visible text to correct few misspellings and have more consistent capitalization

This commit is contained in:
tmtabor
2021-02-21 23:39:33 -08:00
parent 118a39e263
commit 0244148339
12 changed files with 48 additions and 48 deletions

View File

@ -110,7 +110,7 @@ export class SoSCardDeck {
getCardSuit( cardName ) {
if ( cardName[0] == 'c') return 'club';
if ( cardName[0] == 'd') return 'diamond';
if ( cardName[0] == 'h') return 'hearth';
if ( cardName[0] == 'h') return 'hearts';
if ( cardName[0] == 's') return 'spade';
if ( cardName[0] == 'j') return 'joker';
}