Skip to content

Commit 70c0058

Browse files
committed
spellcheck
1 parent 434feba commit 70c0058

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adafruit_mpr121.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def raw_value(self):
9999

100100
@property
101101
def thresholds(self):
102-
"""The touch / release threholds."""
102+
"""The touch / release thresholds."""
103103
buf = bytearray(2)
104104
self._mpr121._read_register_bytes(MPR121_TOUCHTH_0 + 2*self._channel, buf, 2)
105105
return buf[0], buf[1]
@@ -112,7 +112,7 @@ def thresholds(self, value):
112112

113113
@property
114114
def threshold(self):
115-
"""The touch threhold."""
115+
"""The touch threshold."""
116116
return self.thresholds[0]
117117

118118
@threshold.setter
@@ -121,7 +121,7 @@ def threshold(self, value):
121121

122122
@property
123123
def release_threshold(self):
124-
"""The release threhold."""
124+
"""The release threshold."""
125125
return self.thresholds[1]
126126

127127
@release_threshold.setter

0 commit comments

Comments
 (0)