From 88222daa3d1035ab693677e0ea59b4abb1a894c7 Mon Sep 17 00:00:00 2001 From: apple <19359968+apppppppple@users.noreply.github.com> Date: Fri, 8 Apr 2022 00:57:01 -0400 Subject: [PATCH] [hal] Fix misspelling in AnalogInput/Output docs (NFC) (#4153) value -> valid (NFC) --- hal/src/main/native/include/hal/AnalogInput.h | 2 +- hal/src/main/native/include/hal/AnalogOutput.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hal/src/main/native/include/hal/AnalogInput.h b/hal/src/main/native/include/hal/AnalogInput.h index 956cd217b8..fd591fed41 100644 --- a/hal/src/main/native/include/hal/AnalogInput.h +++ b/hal/src/main/native/include/hal/AnalogInput.h @@ -46,7 +46,7 @@ void HAL_FreeAnalogInputPort(HAL_AnalogInputHandle analogPortHandle); HAL_Bool HAL_CheckAnalogModule(int32_t module); /** - * Checks that the analog output channel number is value. + * Checks that the analog output channel number is valid. * Verifies that the analog channel number is one of the legal channel numbers. * Channel numbers are 0-based. * diff --git a/hal/src/main/native/include/hal/AnalogOutput.h b/hal/src/main/native/include/hal/AnalogOutput.h index 26e52318f5..e6a5efc904 100644 --- a/hal/src/main/native/include/hal/AnalogOutput.h +++ b/hal/src/main/native/include/hal/AnalogOutput.h @@ -58,7 +58,7 @@ double HAL_GetAnalogOutput(HAL_AnalogOutputHandle analogOutputHandle, int32_t* status); /** - * Checks that the analog output channel number is value. + * Checks that the analog output channel number is valid. * * Verifies that the analog channel number is one of the legal channel numbers. * Channel numbers are 0-based.