From b28ecbcf0c6ed07cb041f61500870aa6c3877a03 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Wed, 14 Feb 2018 10:37:12 +1300 Subject: [PATCH] Update qs_2.md --- guide/src/qs_2.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/guide/src/qs_2.md b/guide/src/qs_2.md index 10a50e393..ac53d8707 100644 --- a/guide/src/qs_2.md +++ b/guide/src/qs_2.md @@ -71,7 +71,7 @@ Here is full source of main.rs file: ```rust # use std::thread; -# extern crate actix_web; +extern crate actix_web; use actix_web::*; fn index(req: HttpRequest) -> &'static str { @@ -79,14 +79,16 @@ fn index(req: HttpRequest) -> &'static str { } fn main() { -# let child = thread::spawn(|| { +# // In the doctest suite we can't run blocking code - deliberately leak a thread +# // If copying this example in show-all mode make sure you skip the thread spawn +# // call. +# thread::spawn(|| { HttpServer::new( || Application::new() .resource("/", |r| r.f(index))) .bind("127.0.0.1:8088").expect("Can not bind to 127.0.0.1:8088") .run(); - }); -# child.join().expect("failed to join server thread"); +# }); } ```