Skip to content

Commit d38fad3

Browse files
authored
Fixed typo setDeboundDelay() to setDebounceDelay() (#779)
The method name contained the typo. Discussed in issue previously and fixed now, as per your suggestion.
1 parent 4b2b489 commit d38fad3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AudioTools/AudioActions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class AudioActions {
135135
}
136136

137137
/// Defines the debounce delay
138-
void setDeboundDelay(int value) { debounceDelayValue = value; }
138+
void setDebounceDelay(int value) { debounceDelayValue = value; }
139139
/// Defines the touch limit (Default 20)
140140
void setTouchLimit(int value) { touchLimit = value; }
141141

@@ -187,4 +187,4 @@ class AudioActions {
187187
}
188188
};
189189

190-
} // namespace audio_tools
190+
} // namespace audio_tools

0 commit comments

Comments
 (0)