@@ -431,14 +431,14 @@ cdef class Memory:
431431
432432cdef class MemoryUSMShared(Memory):
433433 """
434- MemoryUSMShared(nbytes, alignment=0, queue=None, copy=False) allocates nbytes of
434+ MemoryUSMShared(nbytes, alignment=0, queue=None, copy=False) allocates nbytes of
435435 USM shared memory.
436436
437437 Non-positive alignments are not used (malloc_shared is used instead).
438438 The queue=None the current `dpctl.get_current_queue()` is used to allocate memory.
439439
440- MemoryUSMShared(usm_obj) constructor create instance from `usm_obj` expected to
441- implement `__sycl_usm_array_interface__` protocol and exposing a contiguous block of
440+ MemoryUSMShared(usm_obj) constructor create instance from `usm_obj` expected to
441+ implement `__sycl_usm_array_interface__` protocol and exposing a contiguous block of
442442 USM memory of USM shared type. Using copy=True to perform a copy if USM type is other
443443 than 'shared'.
444444 """
@@ -463,14 +463,14 @@ cdef class MemoryUSMShared(Memory):
463463
464464cdef class MemoryUSMHost(Memory):
465465 """
466- MemoryUSMHost(nbytes, alignment=0, queue=None, copy=False) allocates nbytes of
466+ MemoryUSMHost(nbytes, alignment=0, queue=None, copy=False) allocates nbytes of
467467 USM host memory.
468468
469469 Non-positive alignments are not used (malloc_host is used instead).
470470 The queue=None the current `dpctl.get_current_queue()` is used to allocate memory.
471471
472- MemoryUSMDevice(usm_obj) constructor create instance from `usm_obj` expected to
473- implement `__sycl_usm_array_interface__` protocol and exposing a contiguous block of
472+ MemoryUSMDevice(usm_obj) constructor create instance from `usm_obj` expected to
473+ implement `__sycl_usm_array_interface__` protocol and exposing a contiguous block of
474474 USM memory of USM host type. Using copy=True to perform a copy if USM type is other
475475 than 'host'.
476476 """
@@ -495,14 +495,14 @@ cdef class MemoryUSMHost(Memory):
495495
496496cdef class MemoryUSMDevice(Memory):
497497 """
498- MemoryUSMDevice(nbytes, alignment=0, queue=None, copy=False) allocates nbytes of
498+ MemoryUSMDevice(nbytes, alignment=0, queue=None, copy=False) allocates nbytes of
499499 USM device memory.
500500
501501 Non-positive alignments are not used (malloc_device is used instead).
502502 The queue=None the current `dpctl.get_current_queue()` is used to allocate memory.
503503
504- MemoryUSMDevice(usm_obj) constructor create instance from `usm_obj` expected to
505- implement `__sycl_usm_array_interface__` protocol and exposing a contiguous block of
504+ MemoryUSMDevice(usm_obj) constructor create instance from `usm_obj` expected to
505+ implement `__sycl_usm_array_interface__` protocol and exposing a contiguous block of
506506 USM memory of USM device type. Using copy=True to perform a copy if USM type is other
507507 than 'device'.
508508 """
0 commit comments