Skip to content

Commit d64b4e3

Browse files
committed
Made more requested changes
1 parent bfcaa4b commit d64b4e3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

shared-bindings/fontio/BuiltinFont.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
//| ...
4747
//|
4848

49-
//| bitmap: bitmap = ...
49+
//| bitmap: displayio.Bitmap = ...
5050
//| """Bitmap containing all font glyphs starting with ASCII and followed by unicode. Use
5151
//| `get_glyph` in most cases. This is useful for use with `displayio.TileGrid` and
5252
//| `terminalio.Terminal`."""

shared-bindings/framebufferio/FramebufferDisplay.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
//| objects in CircuitPython, Display objects live until `displayio.release_displays()`
4848
//| is called. This is done so that CircuitPython can use the display itself."""
4949
//|
50-
//| def __init__(self, framebuffer: framebuffer, *, rotation: int = 0, auto_refresh: bool = True) -> None:
50+
//| def __init__(self, framebuffer: rgbmatrix.RGBMatrix, *, rotation: int = 0, auto_refresh: bool = True) -> None:
5151
//| """Create a Display object with the given framebuffer (a buffer, array, ulab.array, etc)
5252
//|
5353
//| :param framebuffer: The framebuffer that the display is connected to
@@ -299,7 +299,7 @@ const mp_obj_property_t framebufferio_framebufferdisplay_rotation_obj = {
299299
(mp_obj_t)&mp_const_none_obj},
300300
};
301301

302-
//| framebuffer: framebuffer = ...
302+
//| framebuffer: rgbmatrix.RGBMatrix = ...
303303
//| """The framebuffer being used by the display"""
304304
//|
305305
//|

shared-bindings/gnss/GNSS.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ const mp_obj_property_t gnss_timestamp_obj = {
190190
(mp_obj_t)&mp_const_none_obj},
191191
};
192192

193-
//| fix: string = ...
193+
//| fix: gnss.PositionFix = ...
194194
//| """Fix mode."""
195195
//|
196196
STATIC mp_obj_t gnss_obj_get_fix(mp_obj_t self_in) {

0 commit comments

Comments
 (0)