From 65b37146bbd498924e2d01e5f5efcf9678722db9 Mon Sep 17 00:00:00 2001 From: Nick Vazquez Date: Mon, 7 Nov 2022 12:22:19 -0800 Subject: [PATCH] [bug][docs] `my_ds` -> `my_df` (#905) Looks like it is supposed to be `my_df` from the example code further down the page --- docs/source/data_input.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/data_input.rst b/docs/source/data_input.rst index 7bbae23f2..8cb189d6e 100644 --- a/docs/source/data_input.rst +++ b/docs/source/data_input.rst @@ -107,7 +107,7 @@ and then later register it in the :class:`~dask_sql.Context` via SQL: # a dask.distributed Client client = Client(...) - client.publish_dataset(my_ds=df) + client.publish_dataset(my_df=df) Later in SQL: @@ -119,7 +119,7 @@ Later in SQL: CREATE TABLE my_data WITH ( format = 'memory', - location = 'my_ds' + location = 'my_df' ) .. group-tab:: GPU @@ -128,7 +128,7 @@ Later in SQL: CREATE TABLE my_data WITH ( format = 'memory', - location = 'my_ds', + location = 'my_df', gpu = True )