]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #34848 - tshepang:patch-1, r=apasel422
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Sat, 16 Jul 2016 14:55:59 +0000 (16:55 +0200)
committerGitHub <noreply@github.com>
Sat, 16 Jul 2016 14:55:59 +0000 (16:55 +0200)
doc: remove stray comma

src/doc/nomicon/phantom-data.md

index 2be14c150165c3bf114abf17c65c379e3edbd4d8..fff8ca752b0b91fd1d5bc5c91ec6b2edbf3bce97 100644 (file)
@@ -81,7 +81,7 @@ Raw pointers that own an allocation is such a pervasive pattern that the
 standard library made a utility for itself called `Unique<T>` which:
 
 * wraps a `*const T` for variance
-* includes a `PhantomData<T>`,
+* includes a `PhantomData<T>`
 * auto-derives Send/Sync as if T was contained
 * marks the pointer as NonZero for the null-pointer optimization