| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -163,7 +163,7 @@ def find_chars(self, query, start=0, stop=None): | |||
| 163 | 163 | result_sets = [] | |
| 164 | 164 | for word in tokenize(query): | |
| 165 | 165 | chars = self.index.get(word) | |
| 166 | - if chars is None: # shorcut: no such word | ||
| 166 | + if chars is None: # shortcut: no such word | ||
| 167 | 167 | result_sets = [] | |
| 168 | 168 | break | |
| 169 | 169 | result_sets.append(chars) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -165,7 +165,7 @@ def find_chars(self, query, start=0, stop=None): | |||
| 165 | 165 | for word in tokenize(query): | |
| 166 | 166 | if word in self.index: | |
| 167 | 167 | result_sets.append(self.index[word]) | |
| 168 | - else: # shorcut: no such word | ||
| 168 | + else: # shortcut: no such word | ||
| 169 | 169 | result_sets = [] | |
| 170 | 170 | break | |
| 171 | 171 | if result_sets: | |
| Back | FazBrowse Home | New Git URL |
0 commit comments