diff --git a/src/common/pico_base_headers/include/pico/error.h b/src/common/pico_base_headers/include/pico/error.h index 9212eda81..26d0f837e 100644 --- a/src/common/pico_base_headers/include/pico/error.h +++ b/src/common/pico_base_headers/include/pico/error.h @@ -42,9 +42,9 @@ enum pico_error_codes { PICO_ERROR_UNSUPPORTED_MODIFICATION = -18, ///< Write is impossible based on previous writes; e.g. attempted to clear an OTP bit PICO_ERROR_LOCK_REQUIRED = -19, ///< A required lock is not owned PICO_ERROR_VERSION_MISMATCH = -20, ///< A version mismatch occurred (e.g. trying to run PIO version 1 code on RP2040) - PICO_ERROR_RESOURCE_IN_USE = -21 ///< The call could not proceed because requires resourcesw were unavailable + PICO_ERROR_RESOURCE_IN_USE = -21 ///< The call could not proceed because the required resources were unavailable }; #endif // !__ASSEMBLER__ -#endif \ No newline at end of file +#endif