about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-07-16 11:10:05 +0200
committerGitHub <noreply@github.com>2016-07-16 11:10:05 +0200
commitcc2176d3fea15b5a67acc959ca92e0ee6521515c (patch)
treeef04adeea5c2061fbca6b9765a087191622cef3e /src
parentc4788c26ad7dc65244a9efc50526609c4c71cfb9 (diff)
downloadrust-cc2176d3fea15b5a67acc959ca92e0ee6521515c.tar.gz
rust-cc2176d3fea15b5a67acc959ca92e0ee6521515c.zip
doc: remove stray comma
Diffstat (limited to 'src')
-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 0d7ec7f1617..ba9ef19830b 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