From 98a5a20c5eccd5c36566363d77ad4c6790a31a61 Mon Sep 17 00:00:00 2001 From: Christopher Wedgwood Date: Sun, 11 Apr 2010 10:19:32 -0700 Subject: [PATCH] nacl: update documentation to match current coding style R=rsc, r CC=golang-dev https://golang.org/cl/822047 --- src/pkg/exp/nacl/srpc/client.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pkg/exp/nacl/srpc/client.go b/src/pkg/exp/nacl/srpc/client.go index a17f8f9d7be..d271a82ffe4 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)