From 5adfe5bffedf0e98864d93381ca2ff2213d8fc88 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 26 Apr 2016 12:48:54 -0400 Subject: [PATCH] Nit: comments should be uppercase letter --- src/libsyntax/codemap.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs index 5862538de2e..93025c58332 100644 --- a/src/libsyntax/codemap.rs +++ b/src/libsyntax/codemap.rs @@ -144,14 +144,14 @@ pub struct MultiSpan { #[derive(Clone, Debug)] 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, - /// is this a primary span? This is the "locus" of the message, - /// and is indicated with a `^^^^` underline, versus `----` + /// Is this a primary span? This is the "locus" of the message, + /// and is indicated with a `^^^^` underline, versus `----`. 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, }