diff --git a/gubernator/github/classifier.py b/gubernator/github/classifier.py index d0be54957dcf..adeea762be12 100644 --- a/gubernator/github/classifier.py +++ b/gubernator/github/classifier.py @@ -134,7 +134,7 @@ def get_skip_comments(events, skip_users=None): events: a list of (event_type str, event_body dict, timestamp). Returns: comment_ids: a set of comment ids that were deleted or made by - users that should be skiped. + users that should be skipped. """ skip_users = skip_users or [] skip_comments = set() diff --git a/gubernator/kubelet_parser.py b/gubernator/kubelet_parser.py index 0ddee54f8989..27613fc8cbb2 100644 --- a/gubernator/kubelet_parser.py +++ b/gubernator/kubelet_parser.py @@ -22,7 +22,7 @@ def parse(lines, highlight_words, filters, objref_dict): """ - Given filters returns indeces of wanted lines from log + Given filters returns indices of wanted lines from log Args: lines: array of log lines @@ -31,7 +31,7 @@ def parse(lines, highlight_words, filters, objref_dict): objref_dict: a dictionary where the keys are possible filters and the values are the words to be highlighted Returns: - matched_lines: ordered array of indeces of lines to display + matched_lines: ordered array of indices of lines to display highlight_words: updated highlight_words """ matched_lines = []