rpc: fix missing parentheses in doc (#17224)

This commit is contained in:
cong 2018-07-23 03:09:45 +08:00 committed by Péter Szilágyi
parent 040dd5bd5d
commit 8997efe31f
1 changed files with 1 additions and 1 deletions

View File

@ -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")
}