1
0
mirror of https://github.com/golang/go synced 2024-10-03 16:31:27 -06:00

nacl: update documentation to match current coding style

R=rsc, r
CC=golang-dev
https://golang.org/cl/822047
This commit is contained in:
Christopher Wedgwood 2010-04-11 10:19:32 -07:00 committed by Rob Pike
parent 3fbe7f4f41
commit 98a5a20c5e

View File

@ -199,9 +199,9 @@ func (r *RPC) Start(name string, arg []interface{}) {
// waits for it to finish, and then returns the results.
// Its implementation is:
//
// r.Start(name, arg);
// <-r.Done;
// return r.Ret, r.Errno;
// r.Start(name, arg)
// <-r.Done
// return r.Ret, r.Errno
//
func (r *RPC) Call(name string, arg []interface{}) (ret []interface{}, err Errno) {
r.Start(name, arg)