We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a33322 commit 69ee734Copy full SHA for 69ee734
comment_spell_check/comment_spell_check.py
@@ -232,8 +232,8 @@ def spell_check_comment(
232
233
# Try splitting camel case words and checking each sub-word
234
sub_words = split_camel_case(error_word)
235
- logger.debug( " Trying splitting camel case word: %s", error_word)
236
- logger.debug( " Sub-words: %s", sub_words)
+ logger.debug(" Trying splitting camel case word: %s", error_word)
+ logger.debug(" Sub-words: %s", sub_words)
237
238
if len(sub_words) > 1 and spell_check_words(spell, sub_words):
239
continue
0 commit comments