From 52b0d291d2000dfebfd0ad470bdd11bb91985439 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sun, 2 Aug 2020 20:15:30 +1000 Subject: [PATCH] replace commas with m-dashes to improve readability of chapter 4.1 This commit makes a minor punctuation change to make the sentence clearer to read and less ambiguous. --- src/ch04-01-what-is-ownership.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch04-01-what-is-ownership.md b/src/ch04-01-what-is-ownership.md index 64a80363ab..6be8794016 100644 --- a/src/ch04-01-what-is-ownership.md +++ b/src/ch04-01-what-is-ownership.md @@ -361,8 +361,8 @@ different is going on. #### Stack-Only Data: Copy -There’s another wrinkle we haven’t talked about yet. This code using integers, -part of which was shown in Listing 4-2, works and is valid: +There’s another wrinkle we haven’t talked about yet. This code using integers – +part of which was shown in Listing 4-2 – works and is valid: ```rust {{#rustdoc_include ../listings/ch04-understanding-ownership/no-listing-06-copy/src/main.rs:here}}