summaryrefslogtreecommitdiff
path: root/exercises/if/if1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/if/if1.rs')
-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.