From fd40c3b64f8bd156c6bb0285690fda72596d297a Mon Sep 17 00:00:00 2001 From: James Shubin Date: Mon, 5 May 2025 17:05:36 -0400 Subject: [PATCH] engine: util: Fix grammar typo --- engine/util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/util/util.go b/engine/util/util.go index 495a0255..fbeec9c2 100644 --- a/engine/util/util.go +++ b/engine/util/util.go @@ -353,7 +353,7 @@ func ResToParamValues(res engine.Res) (map[string]types.Value, error) { return ret, nil } -// GetUID returns the UID of an user. It supports an UID or an username. Caller +// GetUID returns the UID of a user. It supports a UID or a username. Caller // should first check user is not empty. It will return an error if it can't // lookup the UID or username. func GetUID(username string) (int, error) {