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

Commit 41b0f58

Browse files
Diogo Nicoletidiogonicoleti
Diogo Nicoleti
authored andcommitted
typo
1 parent 2e84e21 commit 41b0f58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: 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.0
6+
// IsEqualOrGreaterThan96 returns whether this 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.0
11+
// IsEqualOrGreaterThan10 returns whether this version is greater than 10.0
1212
func (v Version) IsEqualOrGreaterThan10() bool {
1313
return v >= 100000
1414
}

0 commit comments

Comments
 (0)