removed unnecessary comment

This commit is contained in:
Vali Schneider 2020-08-27 16:19:24 -07:00
parent 459969f88f
commit ceab1a9167

View file

@ -16,7 +16,7 @@ declare_clippy_lint! {
/// **Example:**
///
/// ```rust
/// fn option_with_panic() -> Option<bool> // should emit lint
/// fn option_with_panic() -> Option<bool>
/// {
/// panic!("error");
/// }