]> Cypherpunks repositories - gostls13.git/commitdiff
nacl: update documentation to match current coding style
authorChristopher Wedgwood <cw@f00f.org>
Sun, 11 Apr 2010 17:19:32 +0000 (10:19 -0700)
committerRob Pike <r@golang.org>
Sun, 11 Apr 2010 17:19:32 +0000 (10:19 -0700)
R=rsc, r
CC=golang-dev
https://golang.org/cl/822047

src/pkg/exp/nacl/srpc/client.go

index a17f8f9d7be93c25b6577c5014b8e9e36bb8c417..d271a82ffe4dc9592da70a8b63fba6b658c64827 100644 (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)