summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authormarisa <mokou@posteo.de>2019-11-11 13:34:21 +0100
committermarisa <mokou@posteo.de>2019-11-11 13:34:21 +0100
commitad03d180c9311c0093e56a3531eec1a9a70cdb45 (patch)
tree310115755c8ef0928773a248ca7f81e07181d80c /exercises
parent3232a4d60d45381f0b5b2319b7cb5ba78cc513ac (diff)
fix(if1): Remove `return` reference
This closes #153.
Diffstat (limited to 'exercises')
-rw-r--r--exercises/if/if1.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs
index 636e6ce..6da09d3 100644
--- a/exercises/if/if1.rs
+++ b/exercises/if/if1.rs
@@ -3,7 +3,6 @@
pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
// Do not use:
- // - return
// - another function call
// - additional variables
// Scroll down for hints.