From 06490409e7f83498522b9139967a75a772acf733 Mon Sep 17 00:00:00 2001 From: crispythegoat <36864470+crispythegoat@users.noreply.github.com> Date: Tue, 9 Feb 2021 02:15:34 +0000 Subject: [PATCH] Update README.md --- micropython/modules/pico_display/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/modules/pico_display/README.md b/micropython/modules/pico_display/README.md index 01e2660f7..96279a280 100644 --- a/micropython/modules/pico_display/README.md +++ b/micropython/modules/pico_display/README.md @@ -134,7 +134,7 @@ picodisplay.pixel(x, y) ### pixel_span -Draws a horixontal line of pixels to the buffer. The `x` and `y` parameters specify the coordinates of the first pixel of the line. The `l` parameter describes the length of the line in pixels. This function will only extend the line towards the end of the screen, i.e. the `x` coordinate should specify the left hand extreme of the line. +Draws a horizontal line of pixels to the buffer. The `x` and `y` parameters specify the coordinates of the first pixel of the line. The `l` parameter describes the length of the line in pixels. This function will only extend the line towards the end of the screen, i.e. the `x` coordinate should specify the left hand extreme of the line. ```python picodisplay.span(x, y, l)