| author | |
| committer | |
| log | e0290322514827ef8f0bff19f58ceb14b3c3ad62 |
| tree | e7927c826fe00f9d22b3858b08cab3d387e57d69 |
| parent | 0c310f0fbf5ccbfff6c8235aa1a315589f9d8cf9 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/math.zig+1-1| ... | ... | @@ -293,7 +293,7 @@ test "math.min" { |
| 293 | 293 | } |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | pub fn max(x: var, y: var) @TypeOf(x + y) { | |
| 296 | pub fn max(x: var, y: var) @TypeOf(x, y) { | |
| 297 | 297 | return if (x > y) x else y; |
| 298 | 298 | } |
| 299 | 299 |