aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorKenso Trabing <kenso.trabing@bloomwebsite.com>2018-11-14 18:21:52 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-11-14 18:21:52 +0800
commit23de6197f9104a17ece1dc370c862bd23dcae273 (patch)
tree55dc43f1b5815473deccc5999645d72d5e83c853 /rpc
parent698843b45f0dddd6f862c0733838272e6b4aa7f8 (diff)
downloadgo-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.tar
go-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.tar.gz
go-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.tar.bz2
go-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.tar.lz
go-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.tar.xz
go-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.tar.zst
go-tangerine-23de6197f9104a17ece1dc370c862bd23dcae273.zip
rpc: fix package doc typo (#18101)
Changed "send" to "send," in two places
Diffstat (limited to 'rpc')
-rw-r--r--rpc/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/doc.go b/rpc/doc.go
index 9a6c4abbc..c60381b5a 100644
--- a/rpc/doc.go
+++ b/rpc/doc.go
@@ -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