Fix warnings in examples

This commit is contained in:
Felix Raimundo
2017-05-09 19:06:56 +02:00
parent 656efcd3ab
commit 202086e48f

View File

@@ -425,15 +425,15 @@ impl Builder {
/// let (tx, rx) = channel(); /// let (tx, rx) = channel();
/// ///
/// let sender = thread::spawn(move || { /// let sender = thread::spawn(move || {
/// tx.send("Hello, thread".to_owned()); /// let _ = tx.send("Hello, thread".to_owned());
/// }); /// });
/// ///
/// let receiver = thread::spawn(move || { /// let receiver = thread::spawn(move || {
/// println!("{}", rx.recv().unwrap()); /// println!("{}", rx.recv().unwrap());
/// }); /// });
/// ///
/// sender.join(); /// let _ = sender.join();
/// receiver.join(); /// let _ = receiver.join();
/// ``` /// ```
/// ///
/// A thread can also return a value through its [`JoinHandle`], you can use /// A thread can also return a value through its [`JoinHandle`], you can use
@@ -449,7 +449,7 @@ impl Builder {
/// }); /// });
/// ///
/// let result = computation.join().unwrap(); /// let result = computation.join().unwrap();
/// println!("{}", v); /// println!("{}", result);
/// ``` /// ```
/// ///
/// [`channels`]: ../../std/sync/mpsc/index.html /// [`channels`]: ../../std/sync/mpsc/index.html