Some create_benchmark.py script enhancements (v2).

This commit is contained in:
Oscar Byström Ericsson
2024-02-24 10:40:06 +01:00
parent 5b8ce67a3d
commit 783a9c6a77
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
//===--- {name}.swift {padding}----===//
//===--- {name}.swift {padding}---===//
//
// This source file is part of the Swift.org open source project
//

View File

@@ -56,7 +56,7 @@ def create_benchmark_file(name):
# fill in missing template details
file_text = file_text.format(
name = name,
padding = "-" * (55 - len(name)),
padding = "-" * (56 - len(name)),
year = datetime.date.today().year
)