mirror of
https://github.com/golang/go
synced 2024-11-22 05:34:39 -07:00
needless semicolons
R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=23967 CL=23970
This commit is contained in:
parent
122ed3e988
commit
25a2b3626d
@ -9,7 +9,7 @@ type request struct {
|
|||||||
replyc chan int;
|
replyc chan int;
|
||||||
}
|
}
|
||||||
|
|
||||||
type binOp func(a, b int) int;
|
type binOp func(a, b int) int
|
||||||
|
|
||||||
func run(op binOp, req *request) {
|
func run(op binOp, req *request) {
|
||||||
reply := op(req.a, req.b);
|
reply := op(req.a, req.b);
|
||||||
|
@ -9,7 +9,7 @@ type request struct {
|
|||||||
replyc chan int;
|
replyc chan int;
|
||||||
}
|
}
|
||||||
|
|
||||||
type binOp func(a, b int) int;
|
type binOp func(a, b int) int
|
||||||
|
|
||||||
func run(op binOp, req *request) {
|
func run(op binOp, req *request) {
|
||||||
reply := op(req.a, req.b);
|
reply := op(req.a, req.b);
|
||||||
|
Loading…
Reference in New Issue
Block a user