From bc425468c74a33888128b0a9bbf5022c09bbcdb7 Mon Sep 17 00:00:00 2001 From: richherrera Date: Wed, 23 Oct 2024 15:11:09 -0600 Subject: [PATCH] Add the missing commas in the documentation example --- V7_MIGRATION.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/V7_MIGRATION.md b/V7_MIGRATION.md index ee88f8eda..3e3320de1 100644 --- a/V7_MIGRATION.md +++ b/V7_MIGRATION.md @@ -20,9 +20,9 @@ v7 updates `BTCard` to require setting all properties through the initializer, r ``` let card = BTCard( - number = "4111111111111111" - expirationMonth = "12" - expirationYear = "2025" + number = "4111111111111111", + expirationMonth = "12", + expirationYear = "2025", cvv = "123" ) ```