aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2024-03-05 23:43:10 -0800
committerDavid Tolnay <dtolnay@gmail.com>2024-03-05 23:43:10 -0800
commit04b3a754da0646fbaa9c508d48d3e5760bb9070e (patch)
treea9e6bc356eb04af172b468c7cc6994f5d0a6849d
parent744fc221575aa631b1e5c0c2a7272da397919796 (diff)
downloadcxx-04b3a754da0646fbaa9c508d48d3e5760bb9070e.tar.gz
Wrap PR 1321 to 80 columns
-rw-r--r--book/src/tutorial.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/tutorial.md b/book/src/tutorial.md
index cafa24d3..1182dc2c 100644
--- a/book/src/tutorial.md
+++ b/book/src/tutorial.md
@@ -159,8 +159,8 @@ std::unique_ptr<BlobstoreClient> 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