[wpilib] Fix a documentation typo (#3408)

"indicated" was misspelled.
This commit is contained in:
Tyler Veness
2021-06-05 13:35:03 -07:00
committed by GitHub
parent 5c817082a0
commit 8aecda03ed
2 changed files with 6 additions and 6 deletions

View File

@@ -13,10 +13,10 @@ import java.util.function.BiConsumer;
* Class for handling asynchrounous interrupts.
*
* <p>By default, interrupts will occur on rising edge. Callbacks are disabled by default, and
* Enable() must be called before they will occur.
* enable() must be called before they will occur.
*
* <p>Both rising and falling edge can be indiciated if both a rising and falling happen between
* callbacks.
* <p>Both rising and falling edges can be indicated in one callback if both a rising and falling
* edge occurred since the previous callback.
*
* <p>Synchronous interrupts are handled by the SynchronousInterrupt class.
*/