mirror of
https://github.com/servo/servo.git
synced 2025-08-13 01:15:34 +01:00
Rename MinMax to Minmax
This commit is contained in:
parent
c2e746004a
commit
7bc9a95b46
3 changed files with 11 additions and 11 deletions
|
@ -815,7 +815,7 @@ impl TrackSize<LengthOrPercentage> {
|
|||
if min == max {
|
||||
TrackSize::Breadth(max)
|
||||
} else {
|
||||
TrackSize::MinMax(min, max)
|
||||
TrackSize::Minmax(min, max)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -836,7 +836,7 @@ impl TrackSize<LengthOrPercentage> {
|
|||
breadth.to_gecko_style_coord(gecko_min);
|
||||
breadth.to_gecko_style_coord(gecko_max);
|
||||
},
|
||||
TrackSize::MinMax(ref min, ref max) => {
|
||||
TrackSize::Minmax(ref min, ref max) => {
|
||||
min.to_gecko_style_coord(gecko_min);
|
||||
max.to_gecko_style_coord(gecko_max);
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue