File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ impl DoctorCommand {
47
47
if should_treat {
48
48
match treatment. treat ( patient) . await {
49
49
Ok ( ( ) ) => {
50
- println ! ( "{icon}Treatment applied!" , icon = Emoji ( "❤️ " , "" ) ) ;
50
+ println ! ( "{icon}Treatment applied!" , icon = Emoji ( "❤ " , "" ) ) ;
51
51
}
52
52
Err ( err) => {
53
53
show_error ( "Treatment failed: " , err) ;
@@ -61,7 +61,7 @@ impl DoctorCommand {
61
61
} )
62
62
. await ?;
63
63
if count == 0 {
64
- println ! ( "{icon}No problems found." , icon = Emoji ( "❤️ " , "" ) ) ;
64
+ println ! ( "{icon}No problems found." , icon = Emoji ( "❤ " , "" ) ) ;
65
65
}
66
66
Ok ( ( ) )
67
67
}
@@ -71,7 +71,7 @@ fn show_diagnosis(diagnosis: &dyn Diagnosis) {
71
71
let icon = if diagnosis. is_critical ( ) {
72
72
Emoji ( "❗ " , "" )
73
73
} else {
74
- Emoji ( "⚠️ " , "" )
74
+ Emoji ( "⚠ " , "" )
75
75
} ;
76
76
println ! ( "\n {icon}Diagnosis: {}" , diagnosis. description( ) ) ;
77
77
}
You can’t perform that action at this time.
0 commit comments