Skip to content

Commit

Permalink
fix: Fix typo "indetify" to "identify" (#7468)
Browse files Browse the repository at this point in the history
corrected Typo "indetify" to "identify"
  • Loading branch information
jonnycastaway committed Apr 30, 2024
1 parent 9db6203 commit 584b0b5
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 584b0b5

Please sign in to comment.