Skip to content

Commit dc294e4

Browse files
committed
Fix typo.
1 parent b4e54fd commit dc294e4

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

include/ur_api.h

+9-9
Original file line numberDiff line numberDiff line change
@@ -1615,7 +1615,7 @@ typedef struct ur_platform_native_properties_t {
16151615
ur_structure_type_t stype;
16161616
/// [in,out][optional] pointer to extension-specific structure
16171617
void *pNext;
1618-
/// [in] If true then ownership of the native handle is tranferred to
1618+
/// [in] If true then ownership of the native handle is transferred to
16191619
/// the resultant object. This means the object will be responsible for
16201620
/// releasing the native resources at the end of its lifetime.
16211621
bool isNativeHandleOwned;
@@ -2696,7 +2696,7 @@ typedef struct ur_device_native_properties_t {
26962696
ur_structure_type_t stype;
26972697
/// [in,out][optional] pointer to extension-specific structure
26982698
void *pNext;
2699-
/// [in] If true then ownership of the native handle is tranferred to
2699+
/// [in] If true then ownership of the native handle is transferred to
27002700
/// the resultant object. This means the object will be responsible for
27012701
/// releasing the native resources at the end of its lifetime.
27022702
bool isNativeHandleOwned;
@@ -3076,7 +3076,7 @@ typedef struct ur_context_native_properties_t {
30763076
ur_structure_type_t stype;
30773077
/// [in,out][optional] pointer to extension-specific structure
30783078
void *pNext;
3079-
/// [in] If true then ownership of the native handle is tranferred to
3079+
/// [in] If true then ownership of the native handle is transferred to
30803080
/// the resultant object. This means the object will be responsible for
30813081
/// releasing the native resources at the end of its lifetime.
30823082
bool isNativeHandleOwned;
@@ -3697,7 +3697,7 @@ typedef struct ur_mem_native_properties_t {
36973697
ur_structure_type_t stype;
36983698
/// [in,out][optional] pointer to extension-specific structure
36993699
void *pNext;
3700-
/// [in] If true then ownership of the native handle is tranferred to
3700+
/// [in] If true then ownership of the native handle is transferred to
37013701
/// the resultant object. This means the object will be responsible for
37023702
/// releasing the native resources at the end of its lifetime.
37033703
bool isNativeHandleOwned;
@@ -4103,7 +4103,7 @@ typedef struct ur_sampler_native_properties_t {
41034103
ur_structure_type_t stype;
41044104
/// [in,out][optional] pointer to extension-specific structure
41054105
void *pNext;
4106-
/// [in] If true then ownership of the native handle is tranferred to
4106+
/// [in] If true then ownership of the native handle is transferred to
41074107
/// the resultant object. This means the object will be responsible for
41084108
/// releasing the native resources at the end of its lifetime.
41094109
bool isNativeHandleOwned;
@@ -5811,7 +5811,7 @@ typedef struct ur_program_native_properties_t {
58115811
ur_structure_type_t stype;
58125812
/// [in,out][optional] pointer to extension-specific structure
58135813
void *pNext;
5814-
/// [in] If true then ownership of the native handle is tranferred to
5814+
/// [in] If true then ownership of the native handle is transferred to
58155815
/// the resultant object. This means the object will be responsible for
58165816
/// releasing the native resources at the end of its lifetime.
58175817
bool isNativeHandleOwned;
@@ -6480,7 +6480,7 @@ typedef struct ur_kernel_native_properties_t {
64806480
ur_structure_type_t stype;
64816481
/// [in,out][optional] pointer to extension-specific structure
64826482
void *pNext;
6483-
/// [in] If true then ownership of the native handle is tranferred to
6483+
/// [in] If true then ownership of the native handle is transferred to
64846484
/// the resultant object. This means the object will be responsible for
64856485
/// releasing the native resources at the end of its lifetime.
64866486
bool isNativeHandleOwned;
@@ -6875,7 +6875,7 @@ typedef struct ur_queue_native_properties_t {
68756875
ur_structure_type_t stype;
68766876
/// [in,out][optional] pointer to extension-specific structure
68776877
void *pNext;
6878-
/// [in] If true then ownership of the native handle is tranferred to
6878+
/// [in] If true then ownership of the native handle is transferred to
68796879
/// the resultant object. This means the object will be responsible for
68806880
/// releasing the native resources at the end of its lifetime.
68816881
bool isNativeHandleOwned;
@@ -7301,7 +7301,7 @@ typedef struct ur_event_native_properties_t {
73017301
ur_structure_type_t stype;
73027302
/// [in,out][optional] pointer to extension-specific structure
73037303
void *pNext;
7304-
/// [in] If true then ownership of the native handle is tranferred to
7304+
/// [in] If true then ownership of the native handle is transferred to
73057305
/// the resultant object. This means the object will be responsible for
73067306
/// releasing the native resources at the end of its lifetime.
73077307
bool isNativeHandleOwned;

scripts/core/PROG.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ native handle, it is guaranteed not to retain a reference to the native handle,
354354
or cause its resources to be released. A ${X} object that doesn't own its
355355
associated native handle **must** be destroyed before the native handle is.
356356

357-
Ownership of the native handle can be tranferred to the ${X} object by passing
357+
Ownership of the native handle can be transferred to the ${X} object by passing
358358
``isNativeHandleOwned = true`` in the native properties struct when calling the
359359
``CreateWithNativeHandle`` entry point. A ${X} object that owns a native handle
360360
will attempt to release the native resources associated with that handle on

scripts/core/context.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ members:
209209
- type: bool
210210
name: isNativeHandleOwned
211211
desc: |
212-
[in] If true then ownership of the native handle is tranferred to
212+
[in] If true then ownership of the native handle is transferred to
213213
the resultant object. This means the object will be responsible for
214214
releasing the native resources at the end of its lifetime.
215215
--- #--------------------------------------------------------------------------

scripts/core/device.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ members:
804804
- type: bool
805805
name: isNativeHandleOwned
806806
desc: |
807-
[in] If true then ownership of the native handle is tranferred to
807+
[in] If true then ownership of the native handle is transferred to
808808
the resultant object. This means the object will be responsible for
809809
releasing the native resources at the end of its lifetime.
810810
--- #--------------------------------------------------------------------------

scripts/core/event.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ members:
289289
- type: bool
290290
name: isNativeHandleOwned
291291
desc: |
292-
[in] If true then ownership of the native handle is tranferred to
292+
[in] If true then ownership of the native handle is transferred to
293293
the resultant object. This means the object will be responsible for
294294
releasing the native resources at the end of its lifetime.
295295
--- #--------------------------------------------------------------------------

scripts/core/kernel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ members:
513513
- type: bool
514514
name: isNativeHandleOwned
515515
desc: |
516-
[in] If true then ownership of the native handle is tranferred to
516+
[in] If true then ownership of the native handle is transferred to
517517
the resultant object. This means the object will be responsible for
518518
releasing the native resources at the end of its lifetime.
519519
--- #--------------------------------------------------------------------------

scripts/core/memory.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ members:
475475
- type: bool
476476
name: isNativeHandleOwned
477477
desc: |
478-
[in] If true then ownership of the native handle is tranferred to
478+
[in] If true then ownership of the native handle is transferred to
479479
the resultant object. This means the object will be responsible for
480480
releasing the native resources at the end of its lifetime.
481481
--- #--------------------------------------------------------------------------

scripts/core/platform.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ members:
203203
- type: bool
204204
name: isNativeHandleOwned
205205
desc: |
206-
[in] If true then ownership of the native handle is tranferred to
206+
[in] If true then ownership of the native handle is transferred to
207207
the resultant object. This means the object will be responsible for
208208
releasing the native resources at the end of its lifetime.
209209
--- #--------------------------------------------------------------------------

scripts/core/program.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ members:
585585
- type: bool
586586
name: isNativeHandleOwned
587587
desc: |
588-
[in] If true then ownership of the native handle is tranferred to
588+
[in] If true then ownership of the native handle is transferred to
589589
the resultant object. This means the object will be responsible for
590590
releasing the native resources at the end of its lifetime.
591591
--- #--------------------------------------------------------------------------

scripts/core/queue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ members:
262262
- type: bool
263263
name: isNativeHandleOwned
264264
desc: |
265-
[in] If true then ownership of the native handle is tranferred to
265+
[in] If true then ownership of the native handle is transferred to
266266
the resultant object. This means the object will be responsible for
267267
releasing the native resources at the end of its lifetime.
268268
--- #--------------------------------------------------------------------------

scripts/core/sampler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ members:
207207
- type: bool
208208
name: isNativeHandleOwned
209209
desc: |
210-
[in] If true then ownership of the native handle is tranferred to
210+
[in] If true then ownership of the native handle is transferred to
211211
the resultant object. This means the object will be responsible for
212212
releasing the native resources at the end of its lifetime.
213213
--- #--------------------------------------------------------------------------

0 commit comments

Comments
 (0)