From 52999ac0bf46b85a5ee2b0c54ef9e14fd071d599 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Sun, 6 Nov 2022 07:53:27 -0600 Subject: [PATCH] Fixed usage of unwrap in comment to templated one --- libsyclinterface/include/dpctl_sycl_queue_interface.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libsyclinterface/include/dpctl_sycl_queue_interface.h b/libsyclinterface/include/dpctl_sycl_queue_interface.h index 9a324f56a9..8dd07280d2 100644 --- a/libsyclinterface/include/dpctl_sycl_queue_interface.h +++ b/libsyclinterface/include/dpctl_sycl_queue_interface.h @@ -178,7 +178,7 @@ DPCTLQueue_GetDevice(__dpctl_keep const DPCTLSyclQueueRef QRef); * A wrapper over ``sycl::queue.submit()``. The function takes an * interoperability kernel, the kernel arguments, and a ``sycl::queue`` as * input. The kernel is submitted as - * ``parallel_for(range, *unwrap(KRef))``. + * ``parallel_for(range, *unwrap(KRef))``. * * \todo ``sycl::buffer`` arguments are not supported yet. * \todo Add support for id WorkItemOffset @@ -222,7 +222,8 @@ DPCTLQueue_SubmitRange(__dpctl_keep const DPCTLSyclKernelRef KRef, * * A wrapper over ``sycl::queue.submit()``. The function takes an * interoperability kernel, the kernel arguments, and a Sycl queue as input. - * The kernel is submitted as ``parallel_for(nd_range, *unwrap(KRef))``. + * The kernel is submitted as + * ``parallel_for(nd_range, *unwrap(KRef))``. * * \todo sycl::buffer arguments are not supported yet. * \todo Add support for id WorkItemOffset