diff --git a/src/enums_and_pattern_matching/if-let_control_flow.md b/src/enums_and_pattern_matching/if-let_control_flow.md index 1198e00..b7fa736 100644 --- a/src/enums_and_pattern_matching/if-let_control_flow.md +++ b/src/enums_and_pattern_matching/if-let_control_flow.md @@ -11,7 +11,7 @@ match config_max { Some(max) => println! ("The maximum is configured to be {}", max), - _ => (); + _ => () } ```