about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPostmodern <postmodern.mod3@gmail.com>2016-05-19 17:17:17 -0700
committerPostmodern <postmodern.mod3@gmail.com>2016-05-19 17:17:17 -0700
commitd021d7d7cf3aa222ac5bbca6d0c109e0d1f9a890 (patch)
treeb18cd179cd4d3785a24d519406eff4bcd4c5ea75
parent2fd4e604a46d1175f260a33efdfcacb7b48ed1ff (diff)
downloadrust-d021d7d7cf3aa222ac5bbca6d0c109e0d1f9a890.tar.gz
rust-d021d7d7cf3aa222ac5bbca6d0c109e0d1f9a890.zip
Keep line-width within 80 columns
-rw-r--r--src/doc/book/unsized-types.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc/book/unsized-types.md b/src/doc/book/unsized-types.md
index d94409a7b82..12864f2067e 100644
--- a/src/doc/book/unsized-types.md
+++ b/src/doc/book/unsized-types.md
@@ -55,5 +55,6 @@ struct Foo<T: ?Sized> {
 }
 ```
 
-This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both constant size and unsized types.
-All generic type parameters implicitly have the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.
+This `?Sized`, read as “T may or may not be `Sized`”, allowing us to match both
+constant size and unsized types. All generic type parameters implicitly have
+the `Sized` bound, so `?Sized` can be used to opt-out of the implicit bound.