From 04b3a754da0646fbaa9c508d48d3e5760bb9070e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 5 Mar 2024 23:43:10 -0800 Subject: [PATCH] Wrap PR 1321 to 80 columns --- book/src/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/tutorial.md b/book/src/tutorial.md index cafa24d3c..1182dc2c8 100644 --- a/book/src/tutorial.md +++ b/book/src/tutorial.md @@ -159,8 +159,8 @@ std::unique_ptr new_blobstore_client() { } ``` -Using `std::make_unique` would work too, as long as you pass `std("c++14")` to the -C++ compiler as described later on. +Using `std::make_unique` would work too, as long as you pass `std("c++14")` to +the C++ compiler as described later on. The placement in *include/* and *src/* is not significant; you can place C++ code anywhere else in the crate as long as you use the right paths throughout