summaryrefslogtreecommitdiff
path: root/exercises/if
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/if')
-rw-r--r--exercises/if/if1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs
index 6dd64c0..636e6ce 100644
--- a/exercises/if/if1.rs
+++ b/exercises/if/if1.rs
@@ -1,6 +1,6 @@
// if1.rs
-pub fn bigger(a: i32, b:i32) -> i32 {
+pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
// Do not use:
// - return