Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
TIny-Hacker committed Feb 18, 2023
1 parent d635774 commit 5745600
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/csefunctions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ Documentation
* ``bg_high``: high byte of background color.

Alternative method: ``det(12, fg_os, bg_os)``
* ``fg_os``: Foreground color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``bg_os``: Background color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``fg_os``: Foreground color from TI-OS Colors menu, like RED or BLUE or NAVY.
* ``bg_os``: Background color from TI-OS Colors menu, like RED or BLUE or NAVY.

Colors:
* A list of colors can be found `here <colors.html>`__.
Expand Down
6 changes: 3 additions & 3 deletions docs/dcefunctions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Documentation
* ``Str9``: Text to display.

Alternative method: ``det(13, large_font, fg_os, bg_os, x, y)``
* ``fg_os``: Foreground color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``bg_os``: Background color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``fg_os``: Foreground color from TI-OS Colors menu, like RED or BLUE or NAVY.
* ``bg_os``: Background color from TI-OS Colors menu, like RED or BLUE or NAVY.

Colors:
* A list of colors can be found `here <colors.html>`__.
Expand Down Expand Up @@ -69,7 +69,7 @@ Documentation
* ``height``: Height of rectangle.

Alternative method: ``det(15, os_color, x, y, width, height)``
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVY.

.. note::
If you use the alternative method and use 0 for ``os_color``, it will invert the section of the screen covered by the rectangle instead of drawing a color. This can be useful for blinking cursors, etc.
Expand Down
6 changes: 3 additions & 3 deletions docs/graphicsfunctions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Documentation
* ``high``: High byte of color.

Alternative method: ``det(16, os_color)``
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVY.

Colors:
* A list of colors can be found `here <colors.html>`__.
Expand All @@ -40,7 +40,7 @@ Documentation
* ``y2``: y location to finish drawing the line at, beginning from the top-left corner of the screen.

Alternative method: ``det(17, os_color, x1, y1, x2, y2)``
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVY.

Colors:
* A list of colors can be found `here <colors.html>`__.
Expand All @@ -61,7 +61,7 @@ Documentation
* ``y``: y location of the pixel to set, beginning from the top-left corner of the screen.

Alternative method: ``det(17, os_color, x, y)``
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVy.
* ``os_color``: Color from TI-OS Colors menu, like RED or BLUE or NAVY.

.. note::
If you use the alternative method and use 0 for ``os_color``, it will invert the specified pixel instead of drawing a color.
Expand Down

0 comments on commit 5745600

Please sign in to comment.