aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--prog/prog.go4
1 files 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 {