From 7ac1cb97f8df8ce48338bb0c34927efe907adbff Mon Sep 17 00:00:00 2001 From: JP Martin Date: Mon, 18 Aug 2025 21:55:22 -0700 Subject: [PATCH] Fix typo in faq.ipynb "arbitrarily" --- docs/source/faq.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/faq.ipynb b/docs/source/faq.ipynb index feab759419..ecae52d53d 100644 --- a/docs/source/faq.ipynb +++ b/docs/source/faq.ipynb @@ -48,9 +48,9 @@ "df = vaex.open('./my_data/my_big_file.csv')\n", "```\n", "\n", - "In this way you can work with artibrarily large CSV files, with the same API just as if you were working with HDF5, Apache Arrow or Apache Parquet files. \n", + "In this way you can work with arbitrarily large CSV files, with the same API just as if you were working with HDF5, Apache Arrow or Apache Parquet files. \n", " \n", - "For performance reasons, we do recommend converting large CSV files either HDF5 or Apache Arrow format. This is simply done via:\n", + "For performance reasons, we do recommend converting large CSV files to either HDF5 or Apache Arrow format. This is simply done via:\n", " \n", "```python\n", "df = vaex.open('./my_data/my_big_file.csv', convert='./my_data/my_big_file.hdf5')\n",