@@ -105,11 +105,11 @@ cdef class _SyclEvent:
105105cdef class SyclEvent(_SyclEvent):
106106 """
107107 SyclEvent(arg=None)
108- Python class representing ``cl:: sycl::event``. There are multiple
108+ Python class representing ``sycl::event``. There are multiple
109109 ways to create a :class:`dpctl.SyclEvent` object:
110110
111111 - Invoking the constructor with no arguments creates a ready event
112- using the default constructor of the ``cl:: sycl::event``.
112+ using the default constructor of the ``sycl::event``.
113113
114114 :Example:
115115 .. code-block:: python
@@ -248,19 +248,19 @@ cdef class SyclEvent(_SyclEvent):
248248
249249 def _get_capsule (self ):
250250 """
251- Returns a copy of the underlying ``cl:: sycl::event`` pointer as a void
251+ Returns a copy of the underlying ``sycl::event`` pointer as a void
252252 pointer inside a named ``PyCapsule`` that has the name
253253 **SyclEventRef**. The ownership of the pointer inside the capsule is
254254 passed to the caller, and pointer is deleted when the capsule goes out
255255 of scope.
256256
257257 Returns:
258258 :class:`pycapsule`: A capsule object storing a copy of the
259- ``cl:: sycl::event`` pointer belonging to a
259+ ``sycl::event`` pointer belonging to a
260260 :class:`dpctl.SyclEvent` instance.
261261 Raises:
262262 ValueError: If the ``DPCTLEvent_Copy`` fails to copy the
263- ``cl:: sycl::event`` pointer.
263+ ``sycl::event`` pointer.
264264
265265 """
266266 cdef DPCTLSyclEventRef ERef = NULL
@@ -334,7 +334,7 @@ cdef class SyclEvent(_SyclEvent):
334334 def profiling_info_submit (self ):
335335 """
336336 Returns the 64-bit time value in nanoseconds
337- when ``cl:: sycl::command_group`` was submitted to the queue.
337+ when ``sycl::command_group`` was submitted to the queue.
338338 """
339339 cdef uint64_t profiling_info_submit = 0
340340 profiling_info_submit = DPCTLEvent_GetProfilingInfoSubmit(
@@ -346,7 +346,7 @@ cdef class SyclEvent(_SyclEvent):
346346 def profiling_info_start (self ):
347347 """
348348 Returns the 64-bit time value in nanoseconds
349- when ``cl:: sycl::command_group`` started execution on the device.
349+ when ``sycl::command_group`` started execution on the device.
350350 """
351351 cdef uint64_t profiling_info_start = 0
352352 profiling_info_start = DPCTLEvent_GetProfilingInfoStart(self ._event_ref)
@@ -356,7 +356,7 @@ cdef class SyclEvent(_SyclEvent):
356356 def profiling_info_end (self ):
357357 """
358358 Returns the 64-bit time value in nanoseconds
359- when ``cl:: sycl::command_group`` finished execution on the device.
359+ when ``sycl::command_group`` finished execution on the device.
360360 """
361361 cdef uint64_t profiling_info_end = 0
362362 profiling_info_end = DPCTLEvent_GetProfilingInfoEnd(self ._event_ref)
0 commit comments