Skip to content

Commit

Permalink
Fix a minor typo in gtp5g.go
Browse files Browse the repository at this point in the history
In checkVersion function, the last error message had a typo
  • Loading branch information
oliveiraleo committed Jul 12, 2024
1 parent 922281b commit a692329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/forwarder/gtp5g.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (g *Gtp5g) checkVersion() error {
}
if nowVer.LessThan(expMinVer) || nowVer.GreaterThanOrEqual(expMaxVer) {
return errors.Errorf(
"gtp5g version(%v) should be %s <= verion < %s , please update it",
"gtp5g version(%v) should be %s <= version < %s , please update it",
nowVer, expectedMinGtp5gVersion, expectedMaxGtp5gVersion)
}

Expand Down

0 comments on commit a692329

Please sign in to comment.