Commit 98a5a20c authored by Christopher Wedgwood's avatar Christopher Wedgwood Committed by Rob Pike

nacl: update documentation to match current coding style

R=rsc, r
CC=golang-dev
https://golang.org/cl/822047
parent 3fbe7f4f
...@@ -199,9 +199,9 @@ func (r *RPC) Start(name string, arg []interface{}) { ...@@ -199,9 +199,9 @@ func (r *RPC) Start(name string, arg []interface{}) {
// waits for it to finish, and then returns the results. // waits for it to finish, and then returns the results.
// Its implementation is: // Its implementation is:
// //
// r.Start(name, arg); // r.Start(name, arg)
// <-r.Done; // <-r.Done
// return r.Ret, r.Errno; // return r.Ret, r.Errno
// //
func (r *RPC) Call(name string, arg []interface{}) (ret []interface{}, err Errno) { func (r *RPC) Call(name string, arg []interface{}) (ret []interface{}, err Errno) {
r.Start(name, arg) r.Start(name, arg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment