"a array" to "an array"

This commit is contained in:
Dan Halbert 2023-02-23 13:41:49 -05:00 committed by GitHub
parent 9e73e8351a
commit 9058beb573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ msgid "%q must be >= %d"
msgstr ""
#: ports/espressif/common-hal/analogbufio/BufferedIn.c
msgid "%q must be a array of type 'H'"
msgid "%q must be an array of type 'H'"
msgstr ""
#: shared-bindings/analogbufio/BufferedIn.c

View File

@ -243,7 +243,7 @@ uint32_t common_hal_analogbufio_bufferedin_readinto(analogbufio_bufferedin_obj_t
adc_digi_output_format_t output_format = ADC_DIGI_OUTPUT_FORMAT_TYPE1;
if (bytes_per_sample != 2) {
mp_raise_ValueError_varg(translate("%q must be a array of type 'H'"), MP_QSTR_buffer);
mp_raise_ValueError_varg(translate("%q must be an array of type 'H'"), MP_QSTR_buffer);
}
start_dma(self, &convert_mode, &output_format);