From 80a566225c6cd1051e2638affc9bcf2548bb5526 Mon Sep 17 00:00:00 2001 From: Rose Hooper Date: Sun, 9 Jul 2023 16:06:55 -0400 Subject: [PATCH 1/2] Fix minor errors in docs Fixes docs: Serpentine => serpentine tiles_rows => tile_rows --- adafruit_matrixportal/matrixportal.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adafruit_matrixportal/matrixportal.py b/adafruit_matrixportal/matrixportal.py index a990468..27f8af9 100755 --- a/adafruit_matrixportal/matrixportal.py +++ b/adafruit_matrixportal/matrixportal.py @@ -63,10 +63,10 @@ class MatrixPortal(PortalBase): :param debug: Turn on debug print outs. Defaults to False. :param int width: The total width of the display(s) in Pixels. Defaults to 64. :param int height: The total height of the display(s) in Pixels. Defaults to 32. - :param bool Serpentine: Used when panels are arranged in a serpentine pattern rather + :param bool derpentine: Used when panels are arranged in a serpentine pattern rather than a Z-pattern. Defaults to True. - :param int tiles_rows: Used to indicate the number of rows the panels are arranged in. - Defaults to 1. + :param int tile_rows: Used to indicate the number of rows the panels are arranged in. + Defaults to 1. """ From 339d324c70a2fa19939571c01f93f4282b9d72f8 Mon Sep 17 00:00:00 2001 From: Rose Hooper Date: Mon, 10 Jul 2023 11:10:53 -0400 Subject: [PATCH 2/2] Update adafruit_matrixportal/matrixportal.py Co-authored-by: Dan Halbert --- adafruit_matrixportal/matrixportal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_matrixportal/matrixportal.py b/adafruit_matrixportal/matrixportal.py index 27f8af9..fac002e 100755 --- a/adafruit_matrixportal/matrixportal.py +++ b/adafruit_matrixportal/matrixportal.py @@ -63,7 +63,7 @@ class MatrixPortal(PortalBase): :param debug: Turn on debug print outs. Defaults to False. :param int width: The total width of the display(s) in Pixels. Defaults to 64. :param int height: The total height of the display(s) in Pixels. Defaults to 32. - :param bool derpentine: Used when panels are arranged in a serpentine pattern rather + :param bool serpentine: Used when panels are arranged in a serpentine pattern rather than a Z-pattern. Defaults to True. :param int tile_rows: Used to indicate the number of rows the panels are arranged in. Defaults to 1.