-
@@ -213,7 +181,7 @@ if __name__ == '__main__':
parser = optparse.OptionParser()
parser.add_option("--title", dest="title", help="The title of the project.", default="[project name]")
parser.add_option("--file", dest="file", help="The cppcheck xml output file to read defects from. Default is reading from stdin.")
- parser.add_option("--report-dir", dest="report_dir", help="The directory where the html report content is written.")
+ parser.add_option("--report-dir", dest="report_dir", help="The directory where the HTML report content is written.")
parser.add_option("--source-dir", dest="source_dir", help="Base directory where source code files can be found.")
parser.add_option("--source-encoding", dest="source_encoding", help="Encoding of source code.", default=None)
@@ -246,7 +214,7 @@ if __name__ == '__main__':
# We have a list of errors. But now we want to group them on
# each source code file. Lets create a files dictionary that
# will contain a list of all the errors in that file. For each
- # file we will also generate a html filename to use.
+ # file we will also generate a HTML filename to use.
files = {}
file_no = 0
for error in contentHandler.errors:
@@ -261,7 +229,7 @@ if __name__ == '__main__':
if not os.path.exists(options.report_dir):
os.mkdir(options.report_dir)
- # Generate a html file with syntax highlighted source code for each
+ # Generate a HTML file with syntax highlighted source code for each
# file that contains one or more errors.
print("Processing errors")
for filename, data in files.items():