Edit rustc_middle::lint::LintSource docs

Edit punctuation in doc comment for rustc_middle::lint::LintSource::CommandLine.
This commit is contained in:
pierwill 2020-12-19 14:08:41 -08:00
parent f745834457
commit 52b717f826

View File

@ -22,8 +22,8 @@ pub enum LintSource {
Node(Symbol, Span, Option<Symbol> /* RFC 2383 reason */),
/// Lint level was set by a command-line flag.
/// The provided `Level` is the level specified on the command line -
/// the actual level may be lower due to `--cap-lints`
/// The provided `Level` is the level specified on the command line.
/// (The actual level may be lower due to `--cap-lints`.)
CommandLine(Symbol, Level),
}