1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-15 00:04:58 +02:00

Fix line numbers

Fixes #69.
This commit is contained in:
Carol (Nichols || Goulding)
2018-03-04 14:26:56 -05:00
parent 426e5cf3f5
commit 956ffa9d7c
9 changed files with 19 additions and 19 deletions

View File

@ -39,6 +39,6 @@ fn is_even(num: i32) -> bool {
// The error message points to line 10 and says it expects a type after the
// The error message points to line 12 and says it expects a type after the
// `->`. This is where the function's return type should be-- take a look at
// the `is_even` function for an example!