From e0ef0d7c7ba7f4dae083c60f261c5f2d9692bbd8 Mon Sep 17 00:00:00 2001 From: Alexey Bader Date: Fri, 2 Aug 2024 20:30:30 -0700 Subject: [PATCH] [SYCL][NFC] Fix doxygen annotation for graph method description (#14889) --- sycl/source/detail/graph_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/detail/graph_impl.hpp b/sycl/source/detail/graph_impl.hpp index 454a43fe99533..41dc9fba7c176 100644 --- a/sycl/source/detail/graph_impl.hpp +++ b/sycl/source/detail/graph_impl.hpp @@ -115,7 +115,7 @@ class node_impl { /// @param Prev Predecessor to \p node being added as successor. /// /// \p Prev should be a shared_ptr to an instance of this object, but can't - /// use a raw \p this pointer, so the extra \Prev parameter is passed. + /// use a raw \p this pointer, so the extra \p Prev parameter is passed. void registerSuccessor(const std::shared_ptr &Node, const std::shared_ptr &Prev) { if (std::find_if(MSuccessors.begin(), MSuccessors.end(),