rpc: fix typo

Changed "send" to "send," in two places
This commit is contained in:
Kenso Trabing 2018-11-14 04:58:48 -05:00 committed by GitHub
parent 48b4e8069c
commit 1cce7e9948
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ An example method:
func (s *CalcService) Add(a, b int) (int, error)
When the returned error isn't nil the returned integer is ignored and the error is
send back to the client. Otherwise the returned integer is send back to the client.
sent back to the client. Otherwise the returned integer is sent back to the client.
Optional arguments are supported by accepting pointer values as arguments. E.g.
if we want to do the addition in an optional finite field we can accept a mod