Skip to content

Commit

Permalink
FIX: 綴りミスの修正
Browse files Browse the repository at this point in the history
argumet -> argumentへとミスの修正
  • Loading branch information
tsym77yoshi committed Mar 3, 2024
1 parent b436259 commit 293b054
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/hotkeyPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ type RegisteredCombination = {
editor: Editor;
name: HotkeyActionNameType;
combination: HotkeyCombination;
argumetKey: HotkeyArgumentKeyType;
argumentKey: HotkeyArgumentKeyType;
};

interface HotkeyTarget {
Expand Down Expand Up @@ -172,7 +172,7 @@ export class HotkeyManager {
private unbindActions(combinations: RegisteredCombination[]): void {
for (const combination of combinations) {
for (const argumentKeyCombination of getArgumentKeyCombination(
combination.argumetKey
combination.argumentKey
)) {
const bindingKey = combinationAndArgumentKeyToBindingKey(
combination.combination,
Expand Down Expand Up @@ -229,7 +229,7 @@ export class HotkeyManager {
editor: action.editor,
name: action.name,
combination: setting.combination,
argumetKey: setting.argumentKey,
argumentKey: setting.argumentKey,
});
}
}
Expand Down

0 comments on commit 293b054

Please sign in to comment.