about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-07-05 13:11:26 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-07-05 13:16:33 +0200
commitf76187c426c38665d4c6260c7dbcc3dfb0438c82 (patch)
treec1b50475b259955b7bd1fdf35b915e2b92065dc9 /src/doc/reference.md
parent912ab64a0de2c121a1c9f10bb1dbe75983b78c73 (diff)
downloadrust-f76187c426c38665d4c6260c7dbcc3dfb0438c82.tar.gz
rust-f76187c426c38665d4c6260c7dbcc3dfb0438c82.zip
reference: that looks like exclamations marks for some fonts
The sentences are also so short that they don't need periods at the end
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index a3e13acccae..927bb1e0cb5 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3335,8 +3335,8 @@ is often called ‘unit’ or ‘the unit type’.
 
 Rust has two different types for a list of items:
 
-* `[T; N]`, an 'array'.
-* `&[T]`, a 'slice'.
+* `[T; N]`, an 'array'
+* `&[T]`, a 'slice'
 
 An array has a fixed size, and can be allocated on either the stack or the
 heap.