Commit 25a2b362 authored by Rob Pike's avatar Rob Pike

needless semicolons

R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=23967
CL=23970
parent 122ed3e9
......@@ -9,7 +9,7 @@ type request struct {
replyc chan int;
}
type binOp func(a, b int) int;
type binOp func(a, b int) int
func run(op binOp, req *request) {
reply := op(req.a, req.b);
......
......@@ -9,7 +9,7 @@ type request struct {
replyc chan int;
}
type binOp func(a, b int) int;
type binOp func(a, b int) int
func run(op binOp, req *request) {
reply := op(req.a, req.b);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment