Skip to content

Commit 0adc5d4

Browse files
committed
fixed typo in example
1 parent 0750748 commit 0adc5d4

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

notes/techreport.pdf

0 Bytes
Binary file not shown.

notes/techreport.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ \section{Introduction}
4141
val in = makeChannel[Int]()
4242
val out = makeChannel[Int]()
4343
go {
44-
for(i <- 1 to Int.MaxValue) out.write(i)
44+
for(i <- 1 to Int.MaxValue) in.write(i)
4545
}
4646
go {
4747
select.fold(in){ (ch,s) =>

0 commit comments

Comments
 (0)