Skip to content

Commit f3e3e9d

Browse files
author
Diptorup Deb
authored
Merge pull request #1082 from emmanuel-ferdman/wip
fix: typo in error messages of kernel interface
2 parents bb877f4 + 0902b2d commit f3e3e9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numba_dpex/core/kernel_interface/indexers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __init__(self, global_size, local_size):
104104
self._global_range = Range(*global_size)
105105
else:
106106
raise TypeError(
107-
"Unknwon argument type for NdRange global_size, "
107+
"Unknown argument type for NdRange global_size, "
108108
+ "must be of either type Range or Iterable of int's."
109109
)
110110

@@ -114,7 +114,7 @@ def __init__(self, global_size, local_size):
114114
self._local_range = Range(*local_size)
115115
else:
116116
raise TypeError(
117-
"Unknwon argument type for NdRange local_size, "
117+
"Unknown argument type for NdRange local_size, "
118118
+ "must be of either type Range or Iterable of int's."
119119
)
120120

0 commit comments

Comments
 (0)