Skip to content

Commit f5f9c21

Browse files
committed
update example
1 parent 924a364 commit f5f9c21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/kbd_ev_print.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ pub fn mod_state_side_agnostic_s(state: &ModifiersState) -> String {
7474
s.push(' ');
7575

7676
if state.contains(ModifiersState::FN) {
77-
s.push('🄵')
77+
s.push('ƒ')
7878
} else {
7979
s.push(' ')
8080
};
8181
s.push(' ');
8282
if state.contains(ModifiersState::FN_LOCK) {
83-
s.push_str("🄵🔒")
83+
s.push_str("ƒ🔒")
8484
} else {
8585
s.push_str(" ")
8686
};
@@ -104,7 +104,7 @@ pub fn mod_state_side_agnostic_s(state: &ModifiersState) -> String {
104104
};
105105
s.push(' ');
106106
if state.contains(ModifiersState::SYMBOL) {
107-
s.push('🔣')
107+
r s.push('🔣')
108108
} else {
109109
s.push(' ')
110110
};

0 commit comments

Comments
 (0)