From d1967aa299f598d078ec994b2eb37a9e33c182dc Mon Sep 17 00:00:00 2001 From: Georgi Mirazchiyski Date: Thu, 26 Sep 2024 13:59:05 +0100 Subject: [PATCH] [SYCL][doc] Fix a spelling mistake in any_device_has_v aspect trait (#15503) Fixed a mistake in the `DeviceAspectTraitDesign.md` oneAPI design document where `any_device_has_v` was misspelled as `any_devices_has_v`. --- sycl/doc/design/DeviceAspectTraitDesign.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/doc/design/DeviceAspectTraitDesign.md b/sycl/doc/design/DeviceAspectTraitDesign.md index 6a17aa13d88a..ef7f0da456cb 100644 --- a/sycl/doc/design/DeviceAspectTraitDesign.md +++ b/sycl/doc/design/DeviceAspectTraitDesign.md @@ -112,7 +112,7 @@ to generate test cases, ensuring that specializations exist for all aspects: ```c++ #define __SYCL_ASPECT(ASPECT, ASPECT_VAL) \ - constexpr bool CheckAnyDeviceHas##ASPECT = any_devices_has_v; \ + constexpr bool CheckAnyDeviceHas##ASPECT = any_device_has_v; \ constexpr bool CheckAllDevicesHave##ASPECT = all_devices_have_v; #include