Skip to content

Commit 8690c58

Browse files
committed
spelling fix
1 parent 67b246c commit 8690c58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CircuitPython_Sip_and_Puff/puff_detector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def run(self):
134134
while True:
135135
self.check_for_events()
136136

137-
def _catagorize_pressure(self, pressure):
137+
def _categorize_pressure(self, pressure):
138138
"""determine the strength and polarity of the pressure reading"""
139139
level = 0
140140
polarity = 0
@@ -170,7 +170,7 @@ def add_on_puff(self, new_callback):
170170
def _update_state(self):
171171
"""Updates the internal state to detect if a sip/puff has been started or stopped"""
172172

173-
self.current_polarity, level = self._catagorize_pressure(self.current_pressure)
173+
self.current_polarity, level = self._categorize_pressure(self.current_pressure)
174174

175175
if self.state == DETECTED:
176176
self.state = WAITING

0 commit comments

Comments
 (0)