From eecd848c7ce1348776424fbb673dda456eb417bb Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Sun, 25 Feb 2018 10:39:33 -0500 Subject: [PATCH] Remove newline from the middle of link so link script works --- .../src/ch16-04-extensible-concurrency-sync-and-send.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/second-edition/src/ch16-04-extensible-concurrency-sync-and-send.md b/second-edition/src/ch16-04-extensible-concurrency-sync-and-send.md index cddad071f..daf21e0f8 100644 --- a/second-edition/src/ch16-04-extensible-concurrency-sync-and-send.md +++ b/second-edition/src/ch16-04-extensible-concurrency-sync-and-send.md @@ -55,9 +55,9 @@ useful for enforcing invariants related to concurrency. Manually implementing these traits involves implementing unsafe Rust code. We’ll talk about using unsafe Rust code in Chapter 19; for now, the important information is that building new concurrent types not made up of `Send` and -`Sync` parts requires careful thought to uphold the safety guarantees. [The -Rustonomicon] has more information about these guarantees and how to uphold -them. +`Sync` parts requires careful thought to uphold the safety guarantees. +[The Rustonomicon] has more information about these guarantees and how to +uphold them. [The Rustonomicon]: https://doc.rust-lang.org/stable/nomicon/