mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix minor typo
Fix minor typo and make the comments of version-comparison functions uniform. Signed-off-by: Hu Keping <hukeping@huawei.com>
This commit is contained in:
parent
617f18b001
commit
96d8c3584c
1 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ func (v Version) compareTo(other Version) int {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// LessThan checks if a version is less than another version
|
// LessThan checks if a version is less than another
|
||||||
func (v Version) LessThan(other Version) bool {
|
func (v Version) LessThan(other Version) bool {
|
||||||
return v.compareTo(other) == -1
|
return v.compareTo(other) == -1
|
||||||
}
|
}
|
||||||
|
@ -47,12 +47,12 @@ func (v Version) LessThanOrEqualTo(other Version) bool {
|
||||||
return v.compareTo(other) <= 0
|
return v.compareTo(other) <= 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GreaterThan checks if a version is greater than another one
|
// GreaterThan checks if a version is greater than another
|
||||||
func (v Version) GreaterThan(other Version) bool {
|
func (v Version) GreaterThan(other Version) bool {
|
||||||
return v.compareTo(other) == 1
|
return v.compareTo(other) == 1
|
||||||
}
|
}
|
||||||
|
|
||||||
// GreaterThanOrEqualTo checks ia version is greater than or equal to another
|
// GreaterThanOrEqualTo checks if a version is greater than or equal to another
|
||||||
func (v Version) GreaterThanOrEqualTo(other Version) bool {
|
func (v Version) GreaterThanOrEqualTo(other Version) bool {
|
||||||
return v.compareTo(other) >= 0
|
return v.compareTo(other) >= 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue