From 8997efe31f4bf3d82fbaad6f2a027b7fce2f8299 Mon Sep 17 00:00:00 2001 From: cong Date: Mon, 23 Jul 2018 03:09:45 +0800 Subject: rpc: fix missing parentheses in doc (#17224) --- rpc/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rpc') diff --git a/rpc/doc.go b/rpc/doc.go index 78aa92f89..9a6c4abbc 100644 --- a/rpc/doc.go +++ b/rpc/doc.go @@ -58,7 +58,7 @@ An example server which uses the JSON codec: return a + b } - func (s *CalculatorService Div(a, b int) (int, error) { + func (s *CalculatorService) Div(a, b int) (int, error) { if b == 0 { return 0, errors.New("divide by zero") } -- cgit v1.2.3