Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
Co-authored-by: Bradley Dice <[email protected]>
  • Loading branch information
madsbk and bdice committed Aug 5, 2022
1 parent c1edf9f commit d6ce949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cudf/cudf/core/buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def as_buffer(obj: object) -> Buffer:
The returned Buffer keeps a reference to `obj` in order to
retain the lifetime of `obj`.
Raises ValueError if the data of `obj` isn't c-contiguous.
Raises ValueError if the data of `obj` isn't C-contiguous.
Parameters
----------
Expand Down Expand Up @@ -208,7 +208,7 @@ def _get_ptr_and_size(array_interface: Mapping) -> Tuple[int, int]:
"""
Return the pointer and size of an array interface.
Raises ValueError if array isn't c-contiguous
Raises ValueError if array isn't C-contiguous
"""

def is_c_contiguous(shape, strides, itemsize):
Expand Down

0 comments on commit d6ce949

Please sign in to comment.