diff options
| author | guizo792 <95940388+guizo792@users.noreply.github.com> | 2024-03-15 17:36:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-15 17:36:28 +0000 |
| commit | ae69f423cd3a3cb795e0864316dfaf6198fd511c (patch) | |
| tree | 584903c02c0c0352fce29ea0dd3cbc08c15b0b24 /exercises/03_if/if1.rs | |
| parent | 1da82a0eabdae611519d0c58aff34eb9c792dc90 (diff) | |
Update exercises/03_if/if1.rs
Co-authored-by: liv <shadows@with.al>
Diffstat (limited to 'exercises/03_if/if1.rs')
| -rw-r--r-- | exercises/03_if/if1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/03_if/if1.rs b/exercises/03_if/if1.rs index 38d283c..d2afccf 100644 --- a/exercises/03_if/if1.rs +++ b/exercises/03_if/if1.rs @@ -6,7 +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 is returned. + // If both numbers are equal, any of them can be returned. // Do not use: // - another function call // - additional variables |
