summaryrefslogtreecommitdiff
path: root/exercises/03_if
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/03_if')
-rw-r--r--exercises/03_if/if1.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/03_if/if1.rs b/exercises/03_if/if1.rs
index 4734d78..d2afccf 100644
--- a/exercises/03_if/if1.rs
+++ b/exercises/03_if/if1.rs
@@ -6,6 +6,7 @@
pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
+ // If both numbers are equal, any of them can be returned.
// Do not use:
// - another function call
// - additional variables