1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-25 00:37:14 +02:00

Merge pull request #1437 from navicore/errors2-comment-error

correct comments in errors2.rs
This commit is contained in:
liv
2023-03-26 12:49:59 +00:00
committed by GitHub

View File

@ -2,7 +2,7 @@
// Say we're writing a game where you can buy items with tokens. All items cost
// 5 tokens, and whenever you purchase items there is a processing fee of 1
// token. A player of the game will type in how many items they want to buy,
// and the `total_cost` function will calculate the total number of tokens.
// and the `total_cost` function will calculate the total cost of the tokens.
// Since the player typed in the quantity, though, we get it as a string-- and
// they might have typed anything, not just numbers!