about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-04-14 21:24:11 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2016-04-14 21:24:11 +0200
commit571607fe24514b419dea5a596c2d219e2f17dfd1 (patch)
treed38907110490d4df260d55a3d8664882a5ac07be /src
parentfbf8a8ce5e1d69d687b74dcc6c2068204164ed2f (diff)
downloadrust-571607fe24514b419dea5a596c2d219e2f17dfd1.tar.gz
rust-571607fe24514b419dea5a596c2d219e2f17dfd1.zip
doc: add missing comma
Diffstat (limited to 'src')
-rw-r--r--src/librustc/diagnostics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs
index 0b1c9609a0f..34b98a34677 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -292,7 +292,7 @@ E0072: r##"
 When defining a recursive struct or enum, any use of the type being defined
 from inside the definition must occur behind a pointer (like `Box` or `&`).
 This is because structs and enums must have a well-defined size, and without
-the pointer the size of the type would need to be unbounded.
+the pointer, the size of the type would need to be unbounded.
 
 Consider the following erroneous definition of a type for a list of bytes: