Skip to content

Commit 6dada3c

Browse files
authored
Merge pull request #556 from shahrukhjutt98/typos
chore: fix typos
2 parents 7435549 + 7daf0dd commit 6dada3c

File tree

2 files changed

+6
-6
lines changed
  • packages/walletconnect/src/utils
  • wallets/shell-extension/src/extension

2 files changed

+6
-6
lines changed

packages/walletconnect/src/utils/core.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ export const CoreUtil = {
3232
return `${plainAppUrl}/wc?uri=${encodedWcUrl}`;
3333
},
3434

35-
async wait(miliseconds: number) {
35+
async wait(milliseconds: number) {
3636
return new Promise((resolve) => {
37-
setTimeout(resolve, miliseconds);
37+
setTimeout(resolve, milliseconds);
3838
});
3939
},
4040

wallets/shell-extension/src/extension/types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface Shell {
3838
/**
3939
* mode means that how Keplr is connected.
4040
* If the connected Keplr is browser's extension, the mode should be "extension".
41-
* If the connected Keplr is on the mobile app with the embeded web browser, the mode should be "mobile-web".
41+
* If the connected Keplr is on the mobile app with the embedded web browser, the mode should be "mobile-web".
4242
*/
4343
readonly mode: ShellMode;
4444
defaultOptions: ShellIntereactionOptions;
@@ -138,9 +138,9 @@ export interface Shell {
138138
types: Record<
139139
string,
140140
| {
141-
name: string;
142-
type: string;
143-
}[]
141+
name: string;
142+
type: string;
143+
}[]
144144
| undefined
145145
>;
146146
domain: Record<string, any>;

0 commit comments

Comments
 (0)