Skip to content

Commit

Permalink
Update modernExtend.ts
Browse files Browse the repository at this point in the history
corrected Typo "indetify" to "identify"
  • Loading branch information
jonnycastaway authored Apr 30, 2024
1 parent e073925 commit 4870a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/modernExtend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ export function identify(args?: {isSleepy: boolean}): ModernExtend {
const normal: Expose = e.enum('identify', ea.SET, ['identify']).withDescription('Initiate device identification').withCategory('config');
const sleepy: Expose = e.enum('identify', ea.SET, ['identify'])
.withDescription('Initiate device identification. This device is asleep by default.' +
'You may need to wake it up first before sending the indetify command.')
'You may need to wake it up first before sending the identify command.')
.withCategory('config');

const exposes: Expose[] = args.isSleepy ? [sleepy] : [normal];
Expand Down

0 comments on commit 4870a84

Please sign in to comment.