summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2019-10-27 16:41:56 -0500
committerJeff Epler <jepler@gmail.com>2019-10-27 16:41:56 -0500
commit978cec0316b17809e68862beecdf9456a25cc439 (patch)
treeda0a7a07f72b0473a8ba51cf99556a196b2c7a31
parent2b02750f1117ca976f65a1b6689d6ce4ab85bc6e (diff)
pixelbuf: correct trivial typos
-rw-r--r--shared-bindings/_bleio/Service.c2
-rw-r--r--shared-bindings/_pixelbuf/__init__.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/_bleio/Service.c b/shared-bindings/_bleio/Service.c
index da5633f2a..c9b828807 100644
--- a/shared-bindings/_bleio/Service.c
+++ b/shared-bindings/_bleio/Service.c
@@ -49,7 +49,7 @@
//|
//| .. classmethod:: add_to_peripheral(peripheral, uuid, *, secondary=False)
//|
-//| Create a new Service object, identitied by the specified UUID, and add it
+//| Create a new Service object, identified by the specified UUID, and add it
//| to the given Peripheral.
//|
//| To mark the service as secondary, pass `True` as :py:data:`secondary`.
diff --git a/shared-bindings/_pixelbuf/__init__.c b/shared-bindings/_pixelbuf/__init__.c
index 48b9f1cef..eb0cb2984 100644
--- a/shared-bindings/_pixelbuf/__init__.c
+++ b/shared-bindings/_pixelbuf/__init__.c
@@ -55,7 +55,7 @@
//| .. class:: ByteOrder()
//|
-//| Classes representing byteorders for circuitpython
+//| Classes representing byteorders for CircuitPython
//| .. attribute:: bpp
@@ -284,7 +284,7 @@ PIXELBUF_BYTEORDER(LBRG, 4, 3, 1, 2, 0, false, true)
//| * **bpp** 4
//| * **has_luminosity** True
//|
-//| Actual format commonly used by DotStar (5 bit luninance value)
+//| Actual format commonly used by DotStar (5 bit luminance value)
PIXELBUF_BYTEORDER(LBGR, 4, 3, 2, 1, 0, false, true)
STATIC const mp_rom_map_elem_t pixelbuf_module_globals_table[] = {