@@ -114,7 +114,7 @@ cdef class SyclContext(_SyclContext):
114114 ctx = dpctl.SyclContext()
115115 print(ctx.get_devices())
116116
117- - Invoking the constuctor with a specific filter string that creates a
117+ - Invoking the constructor with a specific filter string that creates a
118118 context for the device corresponding to the filter string.
119119
120120 :Example:
@@ -127,7 +127,7 @@ cdef class SyclContext(_SyclContext):
127127 d = ctx.get_devices()[0]
128128 assert(d.is_gpu)
129129
130- - Invoking the constuctor with a :class:`dpctl.SyclDevice` object
130+ - Invoking the constructor with a :class:`dpctl.SyclDevice` object
131131 creates a context for that device.
132132
133133 :Example:
@@ -141,7 +141,7 @@ cdef class SyclContext(_SyclContext):
141141 d = ctx.get_devices()[0]
142142 assert(d.is_gpu)
143143
144- - Invoking the constuctor with a list of :class:`dpctl.SyclDevice`
144+ - Invoking the constructor with a list of :class:`dpctl.SyclDevice`
145145 objects creates a common context for all the devices. This
146146 constructor call is especially useful when creation a context for
147147 multiple sub-devices.
@@ -159,7 +159,7 @@ cdef class SyclContext(_SyclContext):
159159 ctx = dpctl.SyclContext(sub_devices)
160160 assert(len(ctx.get_devices) == len(sub_devices))
161161
162- - Invoking the constuctor with a named ``PyCapsule`` with name
162+ - Invoking the constructor with a named ``PyCapsule`` with name
163163 **"SyclContextRef"** that carries a pointer to a ``sycl::context``
164164 object. The capsule will be renamed upon successful consumption
165165 to ensure one-time use. A new named capsule can be constructed by
@@ -430,7 +430,7 @@ cdef class SyclContext(_SyclContext):
430430 return num_devs
431431 else :
432432 raise ValueError (
433- " An error was encountered quering the number of devices "
433+ " An error was encountered querying the number of devices "
434434 " associated with this context"
435435 )
436436
0 commit comments