From 9471cdb0917477f0e5e8d4e672e1e3f6b6fc4eea Mon Sep 17 00:00:00 2001 From: Alena Astrakhantseva Date: Fri, 13 Dec 2024 15:39:04 +0100 Subject: [PATCH] Update docs/website/docs/dlt-ecosystem/transformations/python.md --- docs/website/docs/dlt-ecosystem/transformations/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/docs/dlt-ecosystem/transformations/python.md b/docs/website/docs/dlt-ecosystem/transformations/python.md index b27fa4e6d1..d43f8caaca 100644 --- a/docs/website/docs/dlt-ecosystem/transformations/python.md +++ b/docs/website/docs/dlt-ecosystem/transformations/python.md @@ -63,7 +63,7 @@ pipeline.run(users.iter_arrow(chunk_size=1000), table_name="users_clean") ### A more complex example -The example above could easily be done in SQL. Let's assume you'd like to actually do some in python arrow transformations. For this will create a resources from which we can yield the modified arrow tables. The same is possibly with dataframes. +The example above could easily be done in SQL. Let's assume you'd like to actually do in Python some Arrow transformations. For this will create a resources from which we can yield the modified Arrow tables. The same is possibly with DataFrames. ```py import pyarrow.compute as pc