Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit dadeb68

Browse files
committed
Fix spelling
1 parent 4a6f931 commit dadeb68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/KeyBindingsDefaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ const navigationBindings = (): KeyBinding<NavigationAction>[] => {
382382
]
383383
}
384384

385-
export const defaultBindingProvider: IKeyBindingsProvider = {
385+
export const defaultBindingsProvider: IKeyBindingsProvider = {
386386
getMessageComposerBindings: messageComposerBindings,
387387
getAutocompleteBindings: autocompleteBindings,
388388
getRoomListBindings: roomListBindings,

src/KeyBindingsManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defaultBindingProvider } from './KeyBindingsDefaults';
1+
import { defaultBindingsProvider } from './KeyBindingsDefaults';
22
import { isMac } from './Keyboard';
33

44
/** Actions for the chat message composer component */
@@ -197,7 +197,7 @@ export class KeyBindingsManager {
197197
* customized key bindings.
198198
*/
199199
bindingsProviders: IKeyBindingsProvider[] = [
200-
defaultBindingProvider,
200+
defaultBindingsProvider,
201201
];
202202

203203
/**

0 commit comments

Comments
 (0)