From e977e2e97c95b3901a75d426f61d2d77b1370cdd Mon Sep 17 00:00:00 2001 From: Greg Lueck Date: Thu, 27 Jun 2024 16:44:07 -0400 Subject: [PATCH] Merge pull request #570 from gmlueck/gmlueck/vec-table-fix Fix Asciidoc error in vec table --- adoc/chapters/programming_interface.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index cffc866f..c7e06bd0 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -17589,7 +17589,7 @@ a@ ---- vec operatorOP(const DataT& lhs, const vec& rhs) ---- -Construct a new instance of the SYCL [code]#vec# class template with + a@ Construct a new instance of the SYCL [code]#vec# class template with the same template parameters as the [code]#rhs# SYCL [code]#vec# with each element of the new SYCL [code]#vec# instance the result of an element-wise [code]#OP# logical operation between the [code]#lhs# scalar and each element of the [code]#rhs# SYCL [code]#vec#.