Skip to content

Commit 869191a

Browse files
committed
Content update (linter fix)
1 parent cf26046 commit 869191a

File tree

1 file changed

+1
-1
lines changed
  • content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts

1 file changed

+1
-1
lines changed

content/hardware/03.nano/boards/nano-r4/tutorials/04.external-interrupts/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ attachInterrupt(digitalPinToInterrupt(3), buttonISR, FALLING);
165165
attachInterrupt(digitalPinToInterrupt(A4), sensorISR, FALLING);
166166
```
167167

168-
In the code snippet shown berfore, both `D3` and `A4` use Channel 1. When the second `attachInterrupt()` executes, it disconnects `buttonISR` completely. Only `sensorISR` will function, and your button will stop responding with no indication of why.
168+
In the code snippet shown before, both `D3` and `A4` use Channel 1. When the second `attachInterrupt()` executes, it disconnects `buttonISR` completely. Only `sensorISR` will function, and your button will stop responding with no indication of why.
169169

170170
#### Interrupt Trigger Modes
171171

0 commit comments

Comments
 (0)