summaryrefslogtreecommitdiff
path: root/src/pkg/exp
diff options
context:
space:
mode:
authorChristopher Wedgwood <cw@f00f.org>2010-04-11 10:19:32 -0700
committerChristopher Wedgwood <cw@f00f.org>2010-04-11 10:19:32 -0700
commit040767e7eef3887faefaddece9f4cf91592c18e8 (patch)
tree027d61d52a9c16f24c45c62b49bad2c7cb45d041 /src/pkg/exp
parent0395e057bc96ba673661ea98056ba38631b034ff (diff)
downloadgolang-040767e7eef3887faefaddece9f4cf91592c18e8.tar.gz
nacl: update documentation to match current coding style
R=rsc, r CC=golang-dev http://codereview.appspot.com/822047 Committer: Rob Pike <r@golang.org>
Diffstat (limited to 'src/pkg/exp')
-rw-r--r--src/pkg/exp/nacl/srpc/client.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkg/exp/nacl/srpc/client.go b/src/pkg/exp/nacl/srpc/client.go
index a17f8f9d7..d271a82ff 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)