mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-08 01:01:34 +00:00
rpc: fix missing parentheses in doc (#17224)
This commit is contained in:
parent
040dd5bd5d
commit
8997efe31f
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ An example server which uses the JSON codec:
|
||||||
return a + b
|
return a + b
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *CalculatorService Div(a, b int) (int, error) {
|
func (s *CalculatorService) Div(a, b int) (int, error) {
|
||||||
if b == 0 {
|
if b == 0 {
|
||||||
return 0, errors.New("divide by zero")
|
return 0, errors.New("divide by zero")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue