From 2e068d0384b74220cd78628f1b1ad543dc9b2911 Mon Sep 17 00:00:00 2001 From: James Carr <70200140+lesamouraipourpre@users.noreply.github.com> Date: Wed, 7 Jul 2021 22:30:30 +0100 Subject: [PATCH] Minor docs fix in TileGrid.c --- shared-bindings/displayio/TileGrid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-bindings/displayio/TileGrid.c b/shared-bindings/displayio/TileGrid.c index 42e9810b54..a0c5e3d816 100644 --- a/shared-bindings/displayio/TileGrid.c +++ b/shared-bindings/displayio/TileGrid.c @@ -56,7 +56,7 @@ //| tile_width and tile_height match the height of the bitmap by default. //| //| :param Bitmap bitmap: The bitmap storing one or more tiles. -//| :param ColorConverter or Palette pixel_shader: The pixel shader that produces colors from values +//| :param ColorConverter,Palette pixel_shader: The pixel shader that produces colors from values //| :param int width: Width of the grid in tiles. //| :param int height: Height of the grid in tiles. //| :param int tile_width: Width of a single tile in pixels. Defaults to the full Bitmap and must evenly divide into the Bitmap's dimensions.