Skip to content

Commit

Permalink
Fix simple typo: recieve -> receive
Browse files Browse the repository at this point in the history
  • Loading branch information
timgates42 committed Dec 4, 2019
1 parent adc801d commit babf5f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubeshell/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def parse_tokens(self, tokens):
parsed, unparsed, suggestions = self.treewalk(self.ast, parsed=list(), unparsed=tokens)
if not suggestions and unparsed:
# TODO: @vogxn: This is hack until we include expected value types for each option and argument.
# Whenver we recieve no suggestions but are left with unparsed tokens we pop the value and walk the
# Whenver we receive no suggestions but are left with unparsed tokens we pop the value and walk the
# tree again without values
logger.debug("unparsed tokens remain, possible value encountered")
unparsed.pop()
Expand Down

0 comments on commit babf5f3

Please sign in to comment.