Skip to content

Commit 1665629

Browse files
authored
Merge pull request #212 from michael-grunder/subject-verb-agreement
Small subject verb agreement fix
2 parents a8aa8e6 + 3b92d06 commit 1665629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/04_pinning/01_chapter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ impl Test {
139139
```
140140

141141
`Test` provides methods to get a reference to the value of the fields `a` and `b`. Since `b` is a
142-
reference to `a` we store it as a pointer since the borrowing rules of Rust doesn't allow us to
142+
reference to `a` we store it as a pointer since the borrowing rules of Rust don't allow us to
143143
define this lifetime. We now have what we call a self-referential struct.
144144

145145
Our example works fine if we don't move any of our data around as you can observe by running

0 commit comments

Comments
 (0)