Skip to content

Commit

Permalink
[fix] typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Glitchy-Tozier authored and dariogoetz committed Oct 24, 2023
1 parent 964e9d9 commit a97058a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboard_layout/src/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ impl Layout {
ModifierLocation::Symbol(c) => {
let base_key_idx = *char2layerkey_index
.get(c)
.ok_or(format!("Modifier char '{:?}' not a found", c))
.ok_or(format!("Modifier char '{:?}' not found", c))
.map_err(anyhow::Error::msg)?;
let mod_idx = *char2mod_index
.entry((layer_modifier_type, *c))
Expand Down

0 comments on commit a97058a

Please sign in to comment.