@@ -36,7 +36,7 @@ class Buffer(core.Buffer):
3636
3737 We use Buffer throughout Zarr to represent a contiguous block of memory.
3838
39- A Buffer is backed by a underlying array-like instance that represents
39+ A Buffer is backed by an underlying array-like instance that represents
4040 the memory. The memory type is unspecified; can be regular host memory,
4141 CUDA device memory, or something else. The only requirement is that the
4242 array-like instance can be copied/converted to a regular Numpy array
@@ -90,7 +90,7 @@ def create_zero_length(cls) -> Self:
9090
9191 @classmethod
9292 def from_buffer (cls , buffer : core .Buffer ) -> Self :
93- """Create an GPU Buffer given an arbitrary Buffer
93+ """Create a GPU Buffer given an arbitrary Buffer
9494 This will try to be zero-copy if `buffer` is already on the
9595 GPU and will trigger a copy if not.
9696
@@ -123,7 +123,7 @@ class NDBuffer(core.NDBuffer):
123123
124124 We use NDBuffer throughout Zarr to represent a n-dimensional memory block.
125125
126- A NDBuffer is backed by a underlying ndarray-like instance that represents
126+ A NDBuffer is backed by an underlying ndarray-like instance that represents
127127 the memory. The memory type is unspecified; can be regular host memory,
128128 CUDA device memory, or something else. The only requirement is that the
129129 ndarray-like instance can be copied/converted to a regular Numpy array
0 commit comments