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

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Diogo Nicoleti authored and diogonicoleti committed Jul 18, 2019
1 parent 2e84e21 commit 41b0f58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgres/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package postgres
// Version for a postgres server
type Version int

// IsEqualOrGreaterThan96 returns whether this is version is greater than 9.6.0
// IsEqualOrGreaterThan96 returns whether this version is greater than 9.6.0
func (v Version) IsEqualOrGreaterThan96() bool {
return v >= 90600
}

// IsEqualOrGreaterThan10 returns whether this is version is greater than 10.0
// IsEqualOrGreaterThan10 returns whether this version is greater than 10.0
func (v Version) IsEqualOrGreaterThan10() bool {
return v >= 100000
}
Expand Down

0 comments on commit 41b0f58

Please sign in to comment.