forked from cerc-io/plugeth
rpc: fix missing parentheses in doc (#17224)
This commit is contained in:
parent
040dd5bd5d
commit
8997efe31f
@ -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")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user