From 3113787fe7a0c96998737e520aa95c303fdd41ef Mon Sep 17 00:00:00 2001 From: AKSUM <51446624+AKSUMRUS@users.noreply.github.com> Date: Fri, 31 May 2024 17:25:15 +0300 Subject: prog: fix a typo in comments --- prog/prog.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prog/prog.go b/prog/prog.go index 29667d217..6fabaa680 100644 --- a/prog/prog.go +++ b/prog/prog.go @@ -453,12 +453,12 @@ func removeArg(arg0 Arg) { }) } -// The public alias for the removeArg method. +// RemoveArg is the public alias for the removeArg method. func RemoveArg(arg Arg) { removeArg(arg) } -// removeCall removes call idx from p. +// RemoveCall removes call idx from p. func (p *Prog) RemoveCall(idx int) { c := p.Calls[idx] for _, arg := range c.Args { -- cgit mrf-deployment