From: Christopher Wedgwood Date: Sun, 11 Apr 2010 17:19:32 +0000 (-0700) Subject: nacl: update documentation to match current coding style X-Git-Tag: weekly.2010-04-13~21 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=98a5a20c5eccd5c36566363d77ad4c6790a31a61;p=gostls13.git nacl: update documentation to match current coding style R=rsc, r CC=golang-dev https://golang.org/cl/822047 --- diff --git a/src/pkg/exp/nacl/srpc/client.go b/src/pkg/exp/nacl/srpc/client.go index a17f8f9d7b..d271a82ffe 100644 --- a/src/pkg/exp/nacl/srpc/client.go +++ b/src/pkg/exp/nacl/srpc/client.go @@ -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)