Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
anurbol committed Sep 19, 2019
1 parent f415e82 commit 81fe6f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comment_parser/parsers/js_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def extract_comments(code):
else:
state = 0
elif state == 2:
# In single-line comment, read characters util EOL.
# In single-line comment, read characters until EOL.
if char == '\n':
comment = common.Comment(current_comment, line_counter)
comments.append(comment)
Expand Down

0 comments on commit 81fe6f6

Please sign in to comment.