1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-04 08:08:09 +02:00

Merge pull request #153 from fcasal/patch-1

Fix typo on Luhn exercise
This commit is contained in:
Andrew Walbran 2023-01-11 13:33:31 +00:00 committed by GitHub
commit 3bb3634c7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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: