about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-04-16 01:16:44 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-04-16 01:18:10 +0530
commit9873771187707fd3f164b6efc8b6841caf0a7f3f (patch)
tree1d158a0b6c58ef3ceaec3628ce7b7109e18396f0
parent5bdbf8ef464c5825a633fba30d73515ea026e030 (diff)
parent571607fe24514b419dea5a596c2d219e2f17dfd1 (diff)
downloadrust-9873771187707fd3f164b6efc8b6841caf0a7f3f.tar.gz
rust-9873771187707fd3f164b6efc8b6841caf0a7f3f.zip
Rollup merge of #32964 - tshepang:comma, r=GuillaumeGomez
doc: add missing comma
-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: