1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-28 19:41:32 +02:00

Fix typo on Luhn exercise

This commit is contained in:
Filipe Casal
2023-01-11 12:11:06 +00:00
committed by GitHub
parent d1422e93c2
commit de9d67205e

View File

@ -14,7 +14,7 @@ following to validate the credit card number:
* Sum all the undoubled and doubled digits.
* The credit card number is valid if the sum is ends with `0`.
* The credit card number is valid if the sum ends with `0`.
Copy the following code to <https://play.rust-lang.org/> and implement the
function: