Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Duzzuti committed May 8, 2024
1 parent b4efa02 commit 05597dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/deck.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Deck {
/// @brief Generates a new deck of 52 cards
/// @exception Guarantee No-throw
constexpr Deck() noexcept {
// generate a 53 cards poker deck
// generate a 52 cards poker deck
u_int8_t i = 0;
for (u_int8_t suit = 0; suit < 4; suit++) {
for (u_int8_t rank = 2; rank < 15; rank++) {
Expand Down

0 comments on commit 05597dd

Please sign in to comment.