Newlines.
authorLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 16 May 2024 11:18:19 +0000 (13:18 +0200)
committerLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 16 May 2024 11:18:19 +0000 (13:18 +0200)
book/src/08_futures/08_outro.md

index 4b480a8..4b2385c 100644 (file)
@@ -20,11 +20,11 @@ A few recommendations for a mostly-pain-free async experience:
   asynchronously. There is ongoing design work, but no consensus (yet).
   If you're using `tokio`, refer to [`tokio_stream`](https://docs.rs/tokio-stream/latest/tokio_stream/) 
   as your go-to interface.
-- **Be careful with buffering.**
+- **Be careful with buffering.**  
   It is often the cause of subtle bugs. Check out 
   ["Barbara battles buffered streams"](https://rust-lang.github.io/wg-async/vision/submitted_stories/status_quo/barbara_battles_buffered_streams.html)
   for more details. 
-- **There is no equivalent of scoped threads for asynchronous tasks**.
+- **There is no equivalent of scoped threads for asynchronous tasks**.  
   Check out ["The scoped task trilemma"](https://without.boats/blog/the-scoped-task-trilemma/)
   for more details.