fix(curriculum): update hint text to 'You should have' in the Luhn algorithm challenge (#55853)
Some checks are pending
i18n - Build Validation / Validate i18n Builds (20.x) (push) Waiting to run
CI - Node.js / Lint (20.x) (push) Waiting to run
CI - Node.js / Build (20.x) (push) Blocked by required conditions
CI - Node.js / Test (20.x) (push) Blocked by required conditions
CI - Node.js / Test - Upcoming Changes (20.x) (push) Blocked by required conditions
CI - Node.js / Test - i18n (italian, 20.x) (push) Blocked by required conditions
CI - Node.js / Test - i18n (portuguese, 20.x) (push) Blocked by required conditions

This commit is contained in:
Kyle Pfister 2024-08-14 02:01:08 -05:00 committed by GitHub
parent cb277da4be
commit bbf6356214
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ Change the value of `card_number` such that `'INVALID!'` is printed to the conso
# --hints--
You could have `card_number = '4111-1111-4555-1141'` within the main function.
You should have `card_number = '4111-1111-4555-1141'` within the main function.
```js
({

View File

@ -11,7 +11,7 @@ Reverse the order of the digits in the last four digits of `card_number`, by usi
# --hints--
You could have `card_number_reversed = card_number[-1:-5:-1]` within the `verify_card_number` function. Expected `--fcc-actual--` to equal `--fcc-expected--`.
You should have `card_number_reversed = card_number[-1:-5:-1]` within the `verify_card_number` function. Expected `--fcc-actual--` to equal `--fcc-expected--`.
```js
({