We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 58dbea0 + 169d3c6 commit 03d3494Copy full SHA for 03d3494
2 files changed
18-asyncio/charfinder/charfinder.py
@@ -163,7 +163,7 @@ def find_chars(self, query, start=0, stop=None):
163
result_sets = []
164
for word in tokenize(query):
165
chars = self.index.get(word)
166
- if chars is None: # shorcut: no such word
+ if chars is None: # shortcut: no such word
167
168
break
169
result_sets.append(chars)
attic/concurrency/charfinder/charfinder.py
@@ -165,7 +165,7 @@ def find_chars(self, query, start=0, stop=None):
if word in self.index:
result_sets.append(self.index[word])
- else: # shorcut: no such word
+ else: # shortcut: no such word
170
171
if result_sets:
0 commit comments