From afdbf4242546bc531630b39eb0a42a5cf970ed5a Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Tue, 30 Jul 2024 12:04:11 -0400 Subject: [PATCH] edit --- docs/user-guide/misc/arrow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/misc/arrow.md b/docs/user-guide/misc/arrow.md index b670940ae1a4..941cbd9fb6c9 100644 --- a/docs/user-guide/misc/arrow.md +++ b/docs/user-guide/misc/arrow.md @@ -130,7 +130,7 @@ If you're developing a library that you wish to integrate with Polars, it's sugg ## Using Polars directly Polars can also consume and export to and import from the [Arrow C Data Interface](https://arrow.apache.org/docs/format/CDataInterface.html) -directly. This is recommended for library maintainers that want to interop with Polars without requiring a pyarrow installation. +directly. This is recommended for libraries that don't support the Arrow PyCapsule Interface and want to interop with Polars without requiring a pyarrow installation. - To export `ArrowArray` C structs, Polars exposes: `Series._export_arrow_to_c`. - To import an `ArrowArray` C struct, Polars exposes `Series._import_arrow_from_c`.