Skip to content

Commit

Permalink
refactor variable to camelcase
Browse files Browse the repository at this point in the history
  • Loading branch information
g547315 committed Mar 12, 2024
1 parent aef9685 commit 1873564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/commands/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ export class CommandRegistry {
this._clearModifierTimer();
this._timerModifierID = window.setTimeout(() => {
this._executeKeyBinding(exact);
}, Private.modifierkey_timeout);
}, Private.modifierkeyTimeOut);
}

/**
Expand Down Expand Up @@ -1345,7 +1345,7 @@ namespace Private {
/**
* The timeout in ms for triggering a modifer key binding.
*/
export const modifierkey_timeout = 500;
export const modifierkeyTimeOut = 500;

/**
* A convenience type alias for a command func.
Expand Down

0 comments on commit 1873564

Please sign in to comment.