Skip to content

Commit e214432

Browse files
committed
Fix comment and keyword typos.
Corrections for a few typos I noticed while working on Issue #1.
1 parent 19b32e1 commit e214432

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adafruit_sgp30.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __init__(self, i2c, address=_SGP30_DEFAULT_I2C_ADDR):
6969

7070
# get unique serial, its 48 bits so we store in an array
7171
self.serial = self._i2c_read_words_from_cmd([0x36, 0x82], 0.01, 3)
72-
# get featuerset
72+
# get featureset
7373
featureset = self._i2c_read_words_from_cmd([0x20, 0x2f], 0.01, 1)
7474
if featureset[0] != _SGP30_FEATURESET:
7575
raise RuntimeError('SGP30 Not detected')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
],
5353

5454
# What does your project relate to?
55-
keywords='adafruit sensiron sgp30 gas sensor ec02 tvod i2c hardware micropython circuitpython',
55+
keywords='adafruit sensiron sgp30 gas sensor eco2 tvoc i2c hardware micropython circuitpython',
5656

5757
# You can just specify the packages manually here if your project is
5858
# simple. Or you can use find_packages().

0 commit comments

Comments
 (0)