Remove leftover comm.rs in std

(The actual comm module lives in core.)
This commit is contained in:
Marijn Haverbeke
2012-01-09 14:53:13 +01:00
parent 0945fcf1fb
commit f30c5ea686
6 changed files with 7 additions and 199 deletions

View File

@@ -15,8 +15,6 @@ shared boxes (@T) may not be transmitted across channels.
Example:
> import std::{task, comm, io};
>
> let p = comm::port();
> task::spawn(comm::chan(p), fn (c: chan<str>) {
> comm::send(c, "Hello, World");