Skip to content

Commit

Permalink
[bug][docs] my_ds -> my_df (#905)
Browse files Browse the repository at this point in the history
Looks like it is supposed to be `my_df` from the example code further down the page
  • Loading branch information
nickvazz authored Nov 7, 2022
1 parent 9bb37a7 commit 65b3714
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/data_input.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -119,7 +119,7 @@ Later in SQL:
CREATE TABLE my_data WITH (
format = 'memory',
location = 'my_ds'
location = 'my_df'
)
.. group-tab:: GPU
Expand All @@ -128,7 +128,7 @@ Later in SQL:
CREATE TABLE my_data WITH (
format = 'memory',
location = 'my_ds',
location = 'my_df',
gpu = True
)
Expand Down

0 comments on commit 65b3714

Please sign in to comment.