Skip to content

Commit

Permalink
clippy3: Make the intent more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
mo8it committed Nov 13, 2024
1 parent e6cb104 commit 38016cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions exercises/22_clippy/clippy3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
#[rustfmt::skip]
#[allow(unused_variables, unused_assignments)]
fn main() {
let my_option: Option<()> = None;
let my_option: Option<&str> = None;
// Assume that you don't know the value of `my_option`.
// In the case of `Some`, we want to print its value.
if my_option.is_none() {
println!("{:?}", my_option.unwrap());
println!("{}", my_option.unwrap());
}

let my_arr = &[
Expand Down
4 changes: 2 additions & 2 deletions solutions/22_clippy/clippy3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ use std::mem;
#[rustfmt::skip]
#[allow(unused_variables, unused_assignments)]
fn main() {
let my_option: Option<()> = None;
let my_option: Option<&str> = None;
// `unwrap` of an `Option` after checking if it is `None` will panic.
// Use `if-let` instead.
if let Some(value) = my_option {
println!("{value:?}");
println!("{value}");
}

// A comma was missing.
Expand Down

0 comments on commit 38016cb

Please sign in to comment.