Skip to content

Commit 68db034

Browse files
committed
Resolved a minor textual error by changing 'supress' to 'suppress'
1 parent 7f9bbb0 commit 68db034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/servo/ws_servo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ bool ws_servo::servo_attach(int pin, int minPulseWidth, int maxPulseWidth,
7272
#ifdef ARDUINO_ARCH_ESP32
7373
rc = servo->attach(pin, minPulseWidth, maxPulseWidth, freq);
7474
#else
75-
(void)freq; // supress warning when we don't use the frequency parameter
75+
(void)freq; // suppress warning when we don't use the frequency parameter
7676
rc = servo->attach(pin, minPulseWidth, maxPulseWidth);
7777
#endif
7878
if (rc == ERR_SERVO_ATTACH)

0 commit comments

Comments
 (0)