aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/doc.go
diff options
context:
space:
mode:
authorFabio Berger <fabioberger1991@gmail.com>2016-06-21 12:52:38 +0800
committerFabio Berger <fabioberger1991@gmail.com>2016-06-22 00:38:35 +0800
commita3efdb13f281cef2db0e384669f2aa5c8b110416 (patch)
tree5e7dc043505c388ef86faa77adf88477cd80b49b /rpc/doc.go
parent4f3f6e28d545ffd84a98520347ba6670d80272b5 (diff)
downloadgo-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.gz
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.bz2
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.lz
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.xz
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.tar.zst
go-tangerine-a3efdb13f281cef2db0e384669f2aa5c8b110416.zip
README, core, rpc: fix various typos
Diffstat (limited to 'rpc/doc.go')
-rw-r--r--rpc/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/doc.go b/rpc/doc.go
index 77202634f..14b3780ad 100644
--- a/rpc/doc.go
+++ b/rpc/doc.go
@@ -49,7 +49,7 @@ arguments. It will pass the mod argument as nil to the RPC method.
The server offers the ServeCodec method which accepts a ServerCodec instance. It will
read requests from the codec, process the request and sends the response back to the
client using the codec. The server can execute requests concurrently. Responses
-can be send back to the client out of order.
+can be sent back to the client out of order.
An example server which uses the JSON codec:
type CalculatorService struct {}