From 4db95e652e30f706a391d702b5fb8060e5572f0d Mon Sep 17 00:00:00 2001 From: Benjamin Herr Date: Wed, 4 Nov 2015 23:37:27 +0100 Subject: [PATCH] docs for Reflect: blank line after first sentence Rustdoc takes the first paragraph as a summary, so having a huge paragraph that ends with introducing an example looked somewhat wrong on the module page. --- src/libcore/marker.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index f6baf23b564b0..01b531624bc96 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -382,11 +382,12 @@ mod impls { unsafe impl<'a, T: Send + ?Sized> Send for &'a mut T {} } -/// A marker trait indicates a type that can be reflected over. This -/// trait is implemented for all types. Its purpose is to ensure that -/// when you write a generic function that will employ reflection, -/// that must be reflected (no pun intended) in the generic bounds of -/// that function. Here is an example: +/// A marker trait indicates a type that can be reflected over. +/// +/// This trait is implemented for all types. Its purpose is to ensure +/// that when you write a generic function that will employ +/// reflection, that must be reflected (no pun intended) in the +/// generic bounds of that function. Here is an example: /// /// ``` /// #![feature(reflect_marker)]