0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-12-01 13:18:54 +01:00

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

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;