From 304edd14fab4dca78ad86d6092a296398d497183 Mon Sep 17 00:00:00 2001 From: Cody Date: Thu, 3 Aug 2023 15:21:33 -0700 Subject: [PATCH] docs: minor blog fixes/prose update fix --- docs/blog/rendered/ibis-version-6.1.0-release.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/blog/rendered/ibis-version-6.1.0-release.ipynb b/docs/blog/rendered/ibis-version-6.1.0-release.ipynb index aa769680a55f..a2d8fa692c26 100644 --- a/docs/blog/rendered/ibis-version-6.1.0-release.ipynb +++ b/docs/blog/rendered/ibis-version-6.1.0-release.ipynb @@ -411,7 +411,7 @@ "source": [ "### DataFusion\n", "\n", - "The DataFusion backend (and a few others) received several improvements from community member [@mesejo](https://github.com/mesejo) with many new operations and memtables now supported. Some highlights include:" + "The DataFusion backend (and a few others) received several improvements from community member [@mesejo](https://github.com/mesejo) with memtables and many new operations now supported. Some highlights include:" ] }, { @@ -543,7 +543,7 @@ "source": [ "### BigQuery\n", "\n", - "Some remaining gaps in `CREATE TABLE` DDL options for BigQuery have been filled in, including the ability to pass in `overwrite=True`.\n" + "Some remaining gaps in `CREATE TABLE` DDL options for BigQuery have been filled in, including the ability to pass in `overwrite=True` for table creation.\n" ] }, { @@ -552,7 +552,7 @@ "source": [ "### PySpark\n", "\n", - "The PySpark backend now supports reading/writing Delta Lake tables, in addition to now supporting `to_csv` and `to_parquet`. You PySpark session must be configured to use the Delta Lake package, and you must have the `delta` package installed in your environment.\n", + "The PySpark backend now supports reading/writing Delta Lake tables. Your PySpark session must be configured to use the Delta Lake package and you must have the `delta` package installed in your environment.\n", "\n", "\n", "```python\n", @@ -561,7 +561,7 @@ "...\n", "\n", "t.to_delta(\"/path/to/delta\", mode=\"overwrite\")\n", - "``````" + "```" ] }, { @@ -570,7 +570,7 @@ "source": [ "### Trino\n", "\n", - "The `.sql` API is now supported in Trino, enabling you to chain Ibis and SQL together for the backend." + "The `.sql` API is now supported in Trino, enabling you to chain Ibis and SQL together." ] }, {