about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-16 16:55:59 +0200
committerGitHub <noreply@github.com>2016-07-16 16:55:59 +0200
commit9d622d9e7eb5cf23e7aee77d6ab358a026d77091 (patch)
tree6a68764561d7bd2e26c1b399b29a4ce473901bad /src/doc
parentf7e4545d1a48c26354ea0fe32138f2fefc8e6a8c (diff)
parentcc2176d3fea15b5a67acc959ca92e0ee6521515c (diff)
downloadrust-9d622d9e7eb5cf23e7aee77d6ab358a026d77091.tar.gz
rust-9d622d9e7eb5cf23e7aee77d6ab358a026d77091.zip
Rollup merge of #34848 - tshepang:patch-1, r=apasel422
doc: remove stray comma
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/nomicon/phantom-data.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/phantom-data.md b/src/doc/nomicon/phantom-data.md
index 2be14c15016..fff8ca752b0 100644
--- a/src/doc/nomicon/phantom-data.md
+++ b/src/doc/nomicon/phantom-data.md
@@ -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