Nit: comments should be uppercase letter

This commit is contained in:
Niko Matsakis 2016-04-26 12:48:54 -04:00
parent 8013eebf2c
commit 5adfe5bffe

View File

@ -144,14 +144,14 @@ pub struct MultiSpan {
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct SpanLabel { pub struct SpanLabel {
/// the span we are going to include in the final snippet /// The span we are going to include in the final snippet.
pub span: Span, pub span: Span,
/// is this a primary span? This is the "locus" of the message, /// Is this a primary span? This is the "locus" of the message,
/// and is indicated with a `^^^^` underline, versus `----` /// and is indicated with a `^^^^` underline, versus `----`.
pub is_primary: bool, pub is_primary: bool,
/// what label should we attach to this span (if any)? /// What label should we attach to this span (if any)?
pub label: Option<String>, pub label: Option<String>,
} }