Fix Option camel case in commented portion of test

This commit is contained in:
Tyler Bindon 2013-01-25 12:32:52 -07:00
parent 633b40f75d
commit 5a69cd75fb
1 changed files with 2 additions and 2 deletions

View File

@ -310,8 +310,8 @@ fn main() {
// Commented out because of option::get error
let (client_, server_) = pingpong::init();
let client_ = ~mut some(client_);
let server_ = ~mut some(server_);
let client_ = ~mut Some(client_);
let server_ = ~mut Some(server_);
task::spawn {|move client_|
let mut client__ = none;