Skip to content

Commit

Permalink
Fix a typo in cpplint
Browse files Browse the repository at this point in the history
s/seperated/separated
  • Loading branch information
284km committed Apr 15, 2018
1 parent 1b206ee commit 43d512b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpplint/cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def ProcessHppHeadersOption(val):
# Automatically append to extensions list so it does not have to be set 2 times
_valid_extensions.update(_hpp_headers)
except ValueError:
PrintUsage('Header extensions must be comma seperated list.')
PrintUsage('Header extensions must be comma separated list.')

def IsHeaderExtension(file_extension):
return file_extension in _hpp_headers
Expand Down Expand Up @@ -6204,7 +6204,7 @@ def ParseArguments(args):
try:
_valid_extensions = set(val.split(','))
except ValueError:
PrintUsage('Extensions must be comma seperated list.')
PrintUsage('Extensions must be comma separated list.')
elif opt == '--headers':
ProcessHppHeadersOption(val)

Expand Down

0 comments on commit 43d512b

Please sign in to comment.