summaryrefslogtreecommitdiff
path: root/docs/reference
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-01-05 15:07:18 +1100
committerDamien George <damien@micropython.org>2024-01-05 15:08:33 +1100
commitee226a8b4340111eee0b13e7b840948f4bb70465 (patch)
tree045b246f790d910ed296a7a203a96798146ec6fa /docs/reference
parent7a794d0d8ec61d37b871ee0efd14735fcfcd8b11 (diff)
all: Fix "reuse" and "overridden" spelling mistakes.
Codespell doesn't pick up "re-used" or "re-uses", and ignores the tests/ directory, so fix these manually. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'docs/reference')
-rw-r--r--docs/reference/constrained.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/constrained.rst b/docs/reference/constrained.rst
index 59c375159..d9a349aa6 100644
--- a/docs/reference/constrained.rst
+++ b/docs/reference/constrained.rst
@@ -211,7 +211,7 @@ two loops:
spi.readinto(buf)
# process data in buf
-The first creates a buffer on each pass whereas the second re-uses a pre-allocated
+The first creates a buffer on each pass whereas the second reuses a pre-allocated
buffer; this is both faster and more efficient in terms of memory fragmentation.
**Bytes are smaller than ints**