8000 Merge pull request #2247 from jepler/comment-doc-typos · tannewt/circuitpython@cc13fc3 · GitHub
[go: up one dir, main page]

Skip to content

Commit cc13fc3

Browse files
authored
Merge pull request micropython#2247 from jepler/comment-doc-typos
Comment doc typos
2 parents 0192268 + c208586 commit cc13fc3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

shared-bindings/_bleio/Service.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
//|
5050
//| .. classmethod:: add_to_peripheral(peripheral, uuid, *, secondary=False)
5151
//|
52-
//| Create a new Service object, identitied by the specified UUID, and add it
52+
//| Create a new Service object, identified by the specified UUID, and add it
5353
//| to the given Peripheral.
5454
//|
5555
//| To mark the service as secondary, pass `True` as :py:data:`secondary`.

shared-bindings/_pixelbuf/__init__.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
//| .. class:: ByteOrder()
5757
//|
58-
//| Classes representing byteorders for circuitpython
58+
//| Classes representing byteorders for CircuitPython
5959

6060

6161
//| .. attribute:: bpp
@@ -284,7 +284,7 @@ PIXELBUF_BYTEORDER(LBRG, 4, 3, 1, 2, 0, false, true)
284284
//| * **bpp** 4
285285
//| * **has_luminosity** True
286286
//|
287-
//| Actual format commonly used by DotStar (5 bit luninance value)
287+
//| Actual format commonly used by DotStar (5 bit luminance value)
288288
PIXELBUF_BYTEORDER(LBGR, 4, 3, 2, 1, 0, false, true)
289289

290290
STATIC const mp_rom_map_elem_t pixelbuf_module_globals_table[] = {

shared-bindings/audiobusio/I2SOut.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//| import time
6363
//| import math
6464
//|
65-
//| # Generate one period of sine wav.
65+
//| # Generate one period of sine wave.
6666
//| length = 8000 // 440
6767
//| sine_wave = array.array("H", [0] * length)
6868
//| for i in range(length):

shared-bindings/audioio/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
//|
6969
//| For compatibility with CircuitPython 4.x, some builds allow the items in
7070
//| `audiocore` to be imported from `audioio`. This will be removed for all
71-
//| boards in a future build of CicuitPython.
71+
//| boards in a future build of CircuitPython.
7272
//|
7373

7474
STATIC const mp_rom_map_elem_t audioio_module_globals_table[] = {

0 commit comments

Comments
 (0)
0