Skip to content

Commit d78d75f

Browse files
author
Hugh Delaney
committed
Fix generate docs
1 parent e141d9e commit d78d75f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

include/ur_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2731,7 +2731,7 @@ urMemBufferPartition(
27312731
UR_APIEXPORT ur_result_t UR_APICALL
27322732
urMemGetNativeHandle(
27332733
ur_mem_handle_t hMem, ///< [in] handle of the mem.
2734-
ur_device_handle_t hDevice, ///< [in] handle of the device that the native handle will be resident on.
2734+
ur_device_handle_t hDevice, ///< [in] handle of the device on which the native handle will reside.
27352735
ur_native_handle_t *phNativeMem ///< [out] a pointer to the native handle of the mem.
27362736
);
27372737

source/adapters/null/ur_nullddi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ __urdlllocal ur_result_t UR_APICALL urMemBufferPartition(
878878
__urdlllocal ur_result_t UR_APICALL urMemGetNativeHandle(
879879
ur_mem_handle_t hMem, ///< [in] handle of the mem.
880880
ur_device_handle_t
881-
hDevice, ///< [in] handle of the device that the native handle will be resident on.
881+
hDevice, ///< [in] handle of the device on which the native handle will reside.
882882
ur_native_handle_t
883883
*phNativeMem ///< [out] a pointer to the native handle of the mem.
884884
) try {

source/loader/layers/tracing/ur_trcddi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ __urdlllocal ur_result_t UR_APICALL urMemBufferPartition(
987987
__urdlllocal ur_result_t UR_APICALL urMemGetNativeHandle(
988988
ur_mem_handle_t hMem, ///< [in] handle of the mem.
989989
ur_device_handle_t
990-
hDevice, ///< [in] handle of the device that the native handle will be resident on.
990+
hDevice, ///< [in] handle of the device on which the native handle will reside.
991991
ur_native_handle_t
992992
*phNativeMem ///< [out] a pointer to the native handle of the mem.
993993
) {

source/loader/layers/validation/ur_valddi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ __urdlllocal ur_result_t UR_APICALL urMemBufferPartition(
11891189
__urdlllocal ur_result_t UR_APICALL urMemGetNativeHandle(
11901190
ur_mem_handle_t hMem, ///< [in] handle of the mem.
11911191
ur_device_handle_t
1192-
hDevice, ///< [in] handle of the device that the native handle will be resident on.
1192+
hDevice, ///< [in] handle of the device on which the native handle will reside.
11931193
ur_native_handle_t
11941194
*phNativeMem ///< [out] a pointer to the native handle of the mem.
11951195
) {

source/loader/ur_ldrddi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ __urdlllocal ur_result_t UR_APICALL urMemBufferPartition(
11541154
__urdlllocal ur_result_t UR_APICALL urMemGetNativeHandle(
11551155
ur_mem_handle_t hMem, ///< [in] handle of the mem.
11561156
ur_device_handle_t
1157-
hDevice, ///< [in] handle of the device that the native handle will be resident on.
1157+
hDevice, ///< [in] handle of the device on which the native handle will reside.
11581158
ur_native_handle_t
11591159
*phNativeMem ///< [out] a pointer to the native handle of the mem.
11601160
) {

source/loader/ur_libapi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ ur_result_t UR_APICALL urMemBufferPartition(
16621662
ur_result_t UR_APICALL urMemGetNativeHandle(
16631663
ur_mem_handle_t hMem, ///< [in] handle of the mem.
16641664
ur_device_handle_t
1665-
hDevice, ///< [in] handle of the device that the native handle will be resident on.
1665+
hDevice, ///< [in] handle of the device on which the native handle will reside.
16661666
ur_native_handle_t
16671667
*phNativeMem ///< [out] a pointer to the native handle of the mem.
16681668
) try {

source/ur_api.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ ur_result_t UR_APICALL urMemBufferPartition(
14271427
ur_result_t UR_APICALL urMemGetNativeHandle(
14281428
ur_mem_handle_t hMem, ///< [in] handle of the mem.
14291429
ur_device_handle_t
1430-
hDevice, ///< [in] handle of the device that the native handle will be resident on.
1430+
hDevice, ///< [in] handle of the device on which the native handle will reside.
14311431
ur_native_handle_t
14321432
*phNativeMem ///< [out] a pointer to the native handle of the mem.
14331433
) {

0 commit comments

Comments
 (0)