From ef35f5e1b000cfa1f80387ef626daca302a8d0df Mon Sep 17 00:00:00 2001 From: David Wendt Date: Thu, 27 Feb 2025 09:17:41 -0500 Subject: [PATCH 1/2] Minor typo fix in filling.pxd --- python/pylibcudf/pylibcudf/libcudf/filling.pxd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pylibcudf/pylibcudf/libcudf/filling.pxd b/python/pylibcudf/pylibcudf/libcudf/filling.pxd index f0bfe8ca80b..d9ae573d23b 100644 --- a/python/pylibcudf/pylibcudf/libcudf/filling.pxd +++ b/python/pylibcudf/pylibcudf/libcudf/filling.pxd @@ -1,4 +1,4 @@ -# Copyright (c) 2020-2024, NVIDIA CORPORATION. +# Copyright (c) 2020-2025, NVIDIA CORPORATION. from libcpp cimport bool from libcpp.memory cimport unique_ptr from pylibcudf.exception_handler cimport libcudf_exception_handler @@ -23,7 +23,7 @@ cdef extern from "cudf/filling.hpp" namespace "cudf" nogil: cdef void fill_in_place( const mutable_column_view & destination, - size_type beign, + size_type begin, size_type end, const scalar & value ) except +libcudf_exception_handler From 70bc4ce9df9aea5152763f1b7ff8099a362ba413 Mon Sep 17 00:00:00 2001 From: David Wendt Date: Thu, 27 Feb 2025 11:50:36 -0500 Subject: [PATCH 2/2] misspelled functions in example --- cpp/examples/interop/interop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/examples/interop/interop.cpp b/cpp/examples/interop/interop.cpp index 133a4e3a514..b01b04489a6 100644 --- a/cpp/examples/interop/interop.cpp +++ b/cpp/examples/interop/interop.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024, NVIDIA CORPORATION. + * Copyright (c) 2024-2025, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ #include #include -// Helper functuons to create StringViews +// Helper functions to create StringViews inline arrow::StringViewType::c_type to_inline_string_view(const void* data, int32_t const& size) { arrow::StringViewType::c_type out;