diff options
| author | Christopher Wedgwood <cw@f00f.org> | 2010-04-11 10:18:49 -0700 |
|---|---|---|
| committer | Christopher Wedgwood <cw@f00f.org> | 2010-04-11 10:18:49 -0700 |
| commit | 0395e057bc96ba673661ea98056ba38631b034ff (patch) | |
| tree | de6551bb46ff677f176505c354f08c6c9854cc1b /src/pkg/testing/script/script.go | |
| parent | e1ccd36c368f97121f420b1afa8f94faa1c30908 (diff) | |
| download | golang-0395e057bc96ba673661ea98056ba38631b034ff.tar.gz | |
testing: update documentation to match current coding style
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/823045
Committer: Rob Pike <r@golang.org>
Diffstat (limited to 'src/pkg/testing/script/script.go')
| -rw-r--r-- | src/pkg/testing/script/script.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/testing/script/script.go b/src/pkg/testing/script/script.go index 9a41a467f..3dbfbd5ff 100644 --- a/src/pkg/testing/script/script.go +++ b/src/pkg/testing/script/script.go @@ -206,10 +206,10 @@ func NewEvent(name string, predecessors []*Event, action action) *Event { // receive events must list the send event as a predecessor but there is no // ordering between the receive events. // -// send := NewEvent("send", nil, Send{c, 1}); -// recv1 := NewEvent("recv 1", []*Event{send}, Recv{c, 1}); -// recv2 := NewEvent("recv 2", []*Event{send}, Recv{c, 1}); -// Perform(0, []*Event{send, recv1, recv2}); +// send := NewEvent("send", nil, Send{c, 1}) +// recv1 := NewEvent("recv 1", []*Event{send}, Recv{c, 1}) +// recv2 := NewEvent("recv 2", []*Event{send}, Recv{c, 1}) +// Perform(0, []*Event{send, recv1, recv2}) // // At first, only the send event would be in the ready set and thus Perform will // send a value to the input channel. Now the two receive events are ready and |
