Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit 2e84e21

Browse files
Diogo Nicoletidiogonicoleti
Diogo Nicoleti
authored andcommitted
Improve comments
1 parent dd52fcd commit 2e84e21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

postgres/version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package postgres
33
// Version for a postgres server
44
type Version int
55

6-
// IsEqualOrGreaterThan96 returns whether this is version is greater than 9.6.x
6+
// IsEqualOrGreaterThan96 returns whether this is version is greater than 9.6.0
77
func (v Version) IsEqualOrGreaterThan96() bool {
88
return v >= 90600
99
}
1010

11-
// IsEqualOrGreaterThan10 returns whether this is version is greater than 10.x
11+
// IsEqualOrGreaterThan10 returns whether this is version is greater than 10.0
1212
func (v Version) IsEqualOrGreaterThan10() bool {
1313
return v >= 100000
1414
}

0 commit comments

Comments
 (0)