summaryrefslogtreecommitdiff
path: root/py/reader.h
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2025-02-18 13:24:11 +0100
committerDamien George <damien@micropython.org>2025-02-25 16:11:33 +1100
commit5e206fdeb5225ce24efb9411cc879bafaa04b86f (patch)
treea7f26a550a7fa45ecc804108fad216f1004acec3 /py/reader.h
parent8b1ed4473dd215d564498f577cb6f3339c3c2e57 (diff)
all: Upgrade codespell to v2.4.1.
This commit upgrades from codespell==2.2.6 to the current codespell==2.4.1, adding emac to the ignore-words-list. Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'py/reader.h')
-rw-r--r--py/reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/reader.h b/py/reader.h
index 301c70ab3..637845700 100644
--- a/py/reader.h
+++ b/py/reader.h
@@ -48,7 +48,7 @@ void mp_reader_new_file(mp_reader_t *reader, qstr filename);
void mp_reader_new_file_from_fd(mp_reader_t *reader, int fd, bool close_fd);
// Try to efficiently read the given number of bytes from a ROM-based reader.
-// Returns a valid, non-NULL pointer to the requseted data if the reader points to ROM.
+// Returns a valid, non-NULL pointer to the requested data if the reader points to ROM.
// Returns NULL if the reader does not point to ROM.
const uint8_t *mp_reader_try_read_rom(mp_reader_t *reader, size_t len);