diff options
| author | Vali Schneider <eval@fb.com> | 2020-08-27 16:19:24 -0700 |
|---|---|---|
| committer | Vali Schneider <eval@fb.com> | 2020-08-27 16:19:24 -0700 |
| commit | ceab1a9167655eba9f9556f8766f8702e49dfef3 (patch) | |
| tree | a218b8e77e8c350a8061b2823bc555d118c768b6 | |
| parent | 459969f88ff95c94b7b34043a7f0e13de91de4f8 (diff) | |
| download | rust-ceab1a9167655eba9f9556f8766f8702e49dfef3.tar.gz rust-ceab1a9167655eba9f9556f8766f8702e49dfef3.zip | |
removed unnecessary comment
| -rw-r--r-- | clippy_lints/src/panic_in_result.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/panic_in_result.rs b/clippy_lints/src/panic_in_result.rs index 3a71a0db6fe..4e08c991bd0 100644 --- a/clippy_lints/src/panic_in_result.rs +++ b/clippy_lints/src/panic_in_result.rs @@ -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"); /// } |
