Skip to content

Commit 083cff0

Browse files
committed
Fix spelling
1 parent b651ca1 commit 083cff0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

devops/scripts/benchmarks/utils/detect_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self):
3535
def init(cls, detect_ver_path: Path, dpcpp_exec: str = "clang++"):
3636
"""
3737
Constructs the singleton instance for DetectVersion, and initializes by
38-
building and run detect _version.cpp, which outputs:
38+
building and run detect_version.cpp, which outputs:
3939
- L0 driver version via ZE_intel_get_driver_version_string extension,
4040
- DPC++ version via `__clang_version__` builtin.
4141

devops/scripts/benchmarks/utils/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Validate:
44
"""Static class containing methods for validating various fields"""
55

66
@staticmethod
7-
def on_re(val: str, regex: re.Pattern, throw: Exception = None):
7+
def on_re(val: str, regex: str, throw: Exception = None):
88
"""
99
Returns True if val is matched by pattern defined by regex, otherwise
1010
False.

0 commit comments

Comments
 (0)