summaryrefslogtreecommitdiff
path: root/functions/functions4.rs
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>2018-03-04 14:26:56 -0500
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>2018-03-04 14:26:56 -0500
commit956ffa9d7c5203c858db333ff5576244eee076fe (patch)
tree7c8cfa21e13071d12d4c66bf8a3da44b723fe914 /functions/functions4.rs
parent426e5cf3f5aa7f65fb13d6884c1bf85e3e195ebd (diff)
Fix line numbers
Fixes #69.
Diffstat (limited to 'functions/functions4.rs')
-rw-r--r--functions/functions4.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/functions4.rs b/functions/functions4.rs
index 4da8d70..5baca0e 100644
--- a/functions/functions4.rs
+++ b/functions/functions4.rs
@@ -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!