diff --git a/src/basic/match-pattern/match-if-let.md b/src/basic/match-pattern/match-if-let.md index 0abc87fe..9f24795e 100644 --- a/src/basic/match-pattern/match-if-let.md +++ b/src/basic/match-pattern/match-if-let.md @@ -264,7 +264,7 @@ match some_u8_value { ```rust let v = Some(3u8); - match v{ + match v { Some(3) => println!("three"), _ => (), }