about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeon Matthes <leon@matthes.biz>2020-08-01 22:48:39 +0200
committerLeon Matthes <leon@matthes.biz>2020-08-01 22:48:39 +0200
commita9af93beebe183d716c0e7313ff8a0fb79b27b6b (patch)
tree35b006076943cdc98c36204232a037bc06f25fc1
parente6c83dd57b920d2069797736ae0a1c9fe14a97cb (diff)
downloadrust-a9af93beebe183d716c0e7313ff8a0fb79b27b6b.tar.gz
rust-a9af93beebe183d716c0e7313ff8a0fb79b27b6b.zip
Add missing period
-rw-r--r--library/std/src/primitive_docs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/primitive_docs.rs b/library/std/src/primitive_docs.rs
index 0fde4245ab5..cbe269557ea 100644
--- a/library/std/src/primitive_docs.rs
+++ b/library/std/src/primitive_docs.rs
@@ -591,7 +591,7 @@ mod prim_array {}
 /// As slices store the length of the sequence they refer to, they have twice
 /// the size of pointers to [`Sized`](marker/trait.Sized.html) types.
 /// Also see the reference on
-/// [dynamically sized types](../reference/dynamically-sized-types.html)
+/// [dynamically sized types](../reference/dynamically-sized-types.html).
 ///
 /// ```
 /// let pointer_size = std::mem::size_of::<&u8>();