mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-15 00:15:32 +02:00
Rename MinMax to SortRange
This commit is contained in:
@ -50,7 +50,7 @@ func Max(x, y int) int {
|
||||
return y
|
||||
}
|
||||
|
||||
func MinMax(x int, y int) (int, int) {
|
||||
func SortRange(x int, y int) (int, int) {
|
||||
if x < y {
|
||||
return x, y
|
||||
}
|
||||
|
Reference in New Issue
Block a user