8000 fix some names · FoamyGuy/circuitpython@2136c92 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2136c92

Browse files
committed
fix some names
1 parent 270e92f commit 2136c92

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

shared-bindings/displayio/__init__.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,21 @@
4545
//| """
4646
//|
4747

48-
//| AnyDisplayBus: fourwire.FourWire | i2cdisplaybus.I2cDisplayBus
48+
//| AnyDisplayBus = fourwire.FourWire | i2cdisplaybus.I2CDisplayBus | is31fl3741.IS31FL3741
4949
//| """Type-checking shorthand for any kind of display bus. Not actually defined in CircuitPython."""
5050
//|
51-
//| AnyFramebuffer: (
51+
//| AnyFramebuffer = (
5252
//| rgbmatrix.RGBMatrix
53-
//| | is31fl3741.FrameBuffer
53+
//| | is31fl3741.IS31FL3741_FrameBuffer
5454
//| | sharpdisplay.SharpMemoryFramebuffer
5555
//| | videocore.Framebuffer
5656
//| | picodvi.Framebuffer
5757
//| | aurora_epaper.AuroraMemoryFramebuffer
5858
//| )
5959
//| """Type-checking shorthand for any kind of framebuffer. Not actually defined in CircuitPython."""
6060
//|
61-
//| AnyDisplay: (
62-
//| busdisplay.BusDisplay | epaperdisplay.EPaperDisplay | framebufferio.FrameBufferDisplay
61+
//| AnyDisplay = (
62+
//| busdisplay.BusDisplay | epaperdisplay.EPaperDisplay | framebufferio.FramebufferDisplay
6363
//| )
6464
//| """Type-checking shorthand for any kind of display. Not actually defined in CircuitPython."""
6565
//| CIRCUITPYTHON_TERMINAL: Group

0 commit comments

Comments
 (0)
0