diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-07-26 17:21:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-26 17:21:11 -0400 |
| commit | a56741f83294ecfccc34f65067d06365827bccfb (patch) | |
| tree | a929cdf97931a96b56548baa44e2526e7a6f91c2 | |
| parent | f57388844d3e8fc8e62711e6768ff0f63d35d736 (diff) | |
| parent | b0de62064cc2ccba33a141bbde169e88b81d0b86 (diff) | |
| download | rust-a56741f83294ecfccc34f65067d06365827bccfb.tar.gz rust-a56741f83294ecfccc34f65067d06365827bccfb.zip | |
Rollup merge of #34850 - tshepang:patch-3, r=steveklabnik
doc: add missing pause
| -rw-r--r-- | src/doc/nomicon/phantom-data.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/nomicon/phantom-data.md b/src/doc/nomicon/phantom-data.md index d565532017a..189695716de 100644 --- a/src/doc/nomicon/phantom-data.md +++ b/src/doc/nomicon/phantom-data.md @@ -50,7 +50,7 @@ struct Vec<T> { } ``` -Unlike the previous example it *appears* that everything is exactly as we +Unlike the previous example, it *appears* that everything is exactly as we want. Every generic argument to Vec shows up in at least one field. Good to go! @@ -84,4 +84,3 @@ standard library made a utility for itself called `Unique<T>` which: * includes a `PhantomData<T>` * auto-derives Send/Sync as if T was contained * marks the pointer as NonZero for the null-pointer optimization - |
