From 3ab645c5e06f1d72b668450e3e6f6398af96a813 Mon Sep 17 00:00:00 2001 From: Greg Dennis <5436032+greg-dennis@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:12:37 -0500 Subject: [PATCH] Fix typo in comment --- gtr/gtr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtr/gtr.go b/gtr/gtr.go index e939870..e4f2d25 100644 --- a/gtr/gtr.go +++ b/gtr/gtr.go @@ -75,7 +75,7 @@ type Package struct { func (p *Package) SetProperty(key, value string) { // TODO(jstemmer): Delete this method in the next major release. // Delete all the properties whose name is the specified key, - // then add the specieid key-value property. + // then add the specified key-value property. i := 0 for _, prop := range p.Properties { if key != prop.Name {