From a692329213c182dc73725c8449fdf40aecb8257b Mon Sep 17 00:00:00 2001 From: oliveiraleo Date: Fri, 12 Jul 2024 12:52:37 -0300 Subject: [PATCH] Fix a minor typo in gtp5g.go In checkVersion function, the last error message had a typo --- internal/forwarder/gtp5g.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/forwarder/gtp5g.go b/internal/forwarder/gtp5g.go index 77f9ded..2aba2bc 100644 --- a/internal/forwarder/gtp5g.go +++ b/internal/forwarder/gtp5g.go @@ -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) }