From c75ecfb5cb3595967d2f61bceede9e422c9087f4 Mon Sep 17 00:00:00 2001 From: Kris van Rens <50581423+krisvanrens@users.noreply.github.com> Date: Fri, 19 May 2023 20:35:39 +0200 Subject: [PATCH] Start note sentence with a capital --- src/ch15-02-deref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch15-02-deref.md b/src/ch15-02-deref.md index 23c9fe8bfc..56db7c0a02 100644 --- a/src/ch15-02-deref.md +++ b/src/ch15-02-deref.md @@ -14,7 +14,7 @@ smart pointers to work in ways similar to references. Then we’ll look at Rust’s *deref coercion* feature and how it lets us work with either references or smart pointers. -> Note: there’s one big difference between the `MyBox` type we’re about to +> Note: There’s one big difference between the `MyBox` type we’re about to > build and the real `Box`: our version will not store its data on the heap. > We are focusing this example on `Deref`, so where the data is actually stored > is less important than the pointer-like behavior.