Skip to content

Commit a9b6411

Browse files
committed
Fix typo in SyclContextCreationError and SyclContextCreationError exceptions text
1 parent 3dfc117 commit a9b6411

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dpctl/_sycl_context.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ _logger = logging.getLogger(__name__)
5959
cdef class SyclContextCreationError(Exception):
6060
"""
6161
A ``SyclContextCreationError`` exception is raised
62-
when :class:`.SyclContext` could not created.
62+
when :class:`.SyclContext` could not be created.
6363
"""
6464
pass
6565

dpctl/_sycl_device.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ __all__ = [
128128
cdef class SyclDeviceCreationError(Exception):
129129
"""
130130
A ``SyclDeviceCreationError`` exception is raised when
131-
:class:`.SyclDevice` instance could not created.
131+
:class:`.SyclDevice` instance could not be created.
132132
"""
133133
pass
134134

0 commit comments

Comments
 (0)