summaryrefslogtreecommitdiff
path: root/src/pkg/exp/eval/func.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/exp/eval/func.go')
-rw-r--r--src/pkg/exp/eval/func.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/exp/eval/func.go b/src/pkg/exp/eval/func.go
index 103d2766d..992706641 100644
--- a/src/pkg/exp/eval/func.go
+++ b/src/pkg/exp/eval/func.go
@@ -47,7 +47,7 @@ func (b *codeBuf) push(instr func(*Thread)) {
if n >= cap(b.instrs) {
a := make(code, n, n*2);
for i := range b.instrs {
- a[i] = b.instrs[i];
+ a[i] = b.instrs[i]
}
b.instrs = a;
}
@@ -61,7 +61,7 @@ func (b *codeBuf) get() code {
// Freeze this buffer into an array of exactly the right size
a := make(code, len(b.instrs));
for i := range b.instrs {
- a[i] = b.instrs[i];
+ a[i] = b.instrs[i]
}
return code(a);
}