Skip to content

Commit 0fe8bda

Browse files
author
Melissa LeBlanc-Williams
committed
Final details
1 parent f4b6c8d commit 0fe8bda

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Examples of unacceptable behavior by participants include:
4141

4242
The goal of the standards and moderation guidelines outlined here is to build
4343
and maintain a respectful community. We ask that you don’t just aim to be
44-
"technically unimpeachable", but rather try to be your best self.
44+
"technically unimpeachable", but rather try to be your best self.
4545

4646
We value many things beyond technical expertise, including collaboration and
4747
supporting others within our community. Providing a positive experience for
@@ -72,7 +72,7 @@ You may report in the following ways:
7272
In any situation, you may send an email to <[email protected]>.
7373

7474
On the Adafruit Discord, you may send an open message from any channel
75-
to all Community Helpers by tagging @community helpers. You may also send an
75+
to all Community Helpers by tagging @community moderators. You may also send an
7676
open message from any channel, or a direct message to @kattni#1507,
7777
@tannewt#4653, @Dan Halbert#1614, @cater#2442, @sommersoft#0222, or
7878
@Andon#8175.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Introduction
1313
:target: https://travis-ci.com/adafruit/Adafruit_CircuitPython_ST7735
1414
:alt: Build Status
1515

16-
displayio driver for ST7735 and ST7789 TFT-LCD displays.
16+
displayio driver for ST7735 TFT-LCD displays.
1717

1818
Dependencies
1919
=============
@@ -30,7 +30,7 @@ Usage Example
3030

3131
.. code-block:: python
3232
33-
import adafruit_st7735
33+
from adafruit_st7735 import ST7735
3434
import board
3535
import busio
3636
import displayio
@@ -40,7 +40,7 @@ Usage Example
4040
4141
spi = busio.SPI(board.SCL, board.SDA)
4242
bus = displayio.FourWire(spi, chip_select=board.D9, command=board.D7, reset=board.D8)
43-
display = adafruit_st7735.ST7735(bus, width=128, height=128)
43+
display = ST7735(bus, width=128, height=128)
4444
4545
s = displayio.Shape(10, 10)
4646
p = displayio.Palette(2)

docs/api.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,5 @@
44
.. If your library file(s) are nested in a directory (e.g. /adafruit_foo/foo.py)
55
.. use this format as the module name: "adafruit_foo.foo"
66
7-
.. automodule:: adafruit_st7735.st7735
7+
.. automodule:: adafruit_st7735
88
:members:
9-
10-
.. automodule:: adafruit_st7735.st7789
11-
:members:

0 commit comments

Comments
 (0)