From 8cec948699801cad2cd3b31d3a9e0b74c004f1d7 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Mon, 19 Dec 2016 20:06:39 -0800 Subject: [PATCH] Fix typos (#409) --- wpilibc/athena/include/AnalogTriggerOutput.h | 2 +- .../athena/java/edu/wpi/first/wpilibj/AnalogTriggerOutput.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wpilibc/athena/include/AnalogTriggerOutput.h b/wpilibc/athena/include/AnalogTriggerOutput.h index e5cf9593ce..c9252a17d6 100644 --- a/wpilibc/athena/include/AnalogTriggerOutput.h +++ b/wpilibc/athena/include/AnalogTriggerOutput.h @@ -33,7 +33,7 @@ class AnalogTrigger; * The RisingPulse and FallingPulse outputs detect an instantaneous transition * from above the upper limit to below the lower limit, and vise versa. These * pulses represent a rollover condition of a sensor and can be routed to an up - * / down couter or to interrupts. Because the outputs generate a pulse, they + * / down counter or to interrupts. Because the outputs generate a pulse, they * cannot be read directly. To help ensure that a rollover condition is not * missed, there is an average rejection filter available that operates on the * upper 8 bits of a 12 bit number and selects the nearest outlyer of 3 samples. diff --git a/wpilibj/src/athena/java/edu/wpi/first/wpilibj/AnalogTriggerOutput.java b/wpilibj/src/athena/java/edu/wpi/first/wpilibj/AnalogTriggerOutput.java index ab853b0475..43ae19e8cc 100644 --- a/wpilibj/src/athena/java/edu/wpi/first/wpilibj/AnalogTriggerOutput.java +++ b/wpilibj/src/athena/java/edu/wpi/first/wpilibj/AnalogTriggerOutput.java @@ -26,7 +26,7 @@ import edu.wpi.first.wpilibj.hal.HAL; * *

The RisingPulse and FallingPulse outputs detect an instantaneous transition from above the * upper limit to below the lower limit, and vise versa. These pulses represent a rollover condition - * of a sensor and can be routed to an up / down couter or to interrupts. Because the outputs + * of a sensor and can be routed to an up / down counter or to interrupts. Because the outputs * generate a pulse, they cannot be read directly. To help ensure that a rollover condition is not * missed, there is an average rejection filter available that operates on the upper 8 bits of a 12 * bit number and selects the nearest outlyer of 3 samples. This will reject a sample that is (due