Upgrade a comment to a doc comment

This commit is contained in:
Oliver Schneider 2017-08-17 16:15:40 +02:00 committed by GitHub
parent dd39ecf368
commit 7f5f92218a
1 changed files with 3 additions and 3 deletions

View File

@ -121,10 +121,10 @@ pub enum FindLintError {
pub enum CheckLintNameResult<'a> {
Ok(&'a [LintId]),
// Lint doesn't exist
/// Lint doesn't exist
NoLint,
// The lint is either renamed or removed. This is the warning
// message.
/// The lint is either renamed or removed. This is the warning
/// message.
Warning(String),
}