Skip to content

Commit 6afdd5a

Browse files
committed
Fix documentation
1 parent 3a4797f commit 6afdd5a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

singlestoredb/fusion/handlers/files.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class ShowPersonalFilesHandler(ShowFilesHandler):
8989
specified number.
9090
* Use the ``ORDER BY`` clause to sort the results by the specified
9191
key. By default, the results are sorted in the ascending order.
92-
* The ``AT PATH`` clause specifies the path in the personal/shared
92+
* The ``AT`` clause specifies the path in the personal/shared
9393
space to list the files from.
9494
* Use the ``RECURSIVE`` clause to list the files recursively.
9595
* To return more information about the files, use the ``EXTENDED``
@@ -99,7 +99,7 @@ class ShowPersonalFilesHandler(ShowFilesHandler):
9999
--------
100100
The following command lists the files at a specific path::
101101
102-
SHOW PERSONAL FILES AT PATH "/data/";
102+
SHOW PERSONAL FILES AT "/data/";
103103
104104
The following command lists the files recursively with
105105
additional information::
@@ -154,7 +154,7 @@ class ShowSharedFilesHandler(ShowFilesHandler):
154154
specified number.
155155
* Use the ``ORDER BY`` clause to sort the results by the specified
156156
key. By default, the results are sorted in the ascending order.
157-
* The ``AT PATH`` clause specifies the path in the personal/shared
157+
* The ``AT`` clause specifies the path in the personal/shared
158158
space to list the files from.
159159
* Use the ``RECURSIVE`` clause to list the files recursively.
160160
* To return more information about the files, use the ``EXTENDED``
@@ -164,7 +164,7 @@ class ShowSharedFilesHandler(ShowFilesHandler):
164164
--------
165165
The following command lists the files at a specific path::
166166
167-
SHOW SHARED FILES AT PATH "/data/";
167+
SHOW SHARED FILES AT "/data/";
168168
169169
The following command lists the files recursively with
170170
additional information::

singlestoredb/fusion/handlers/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ShowModelsHandler(ShowFilesHandler):
4444
specified number.
4545
* Use the ``ORDER BY`` clause to sort the results by the specified
4646
key. By default, the results are sorted in the ascending order.
47-
* The ``AT PATH`` clause specifies the path in the models
47+
* The ``AT`` clause specifies the path in the models
4848
space to list the files from.
4949
* To return more information about the files, use the ``EXTENDED``
5050
clause.

singlestoredb/fusion/handlers/stage.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class ShowStageFilesHandler(SQLHandler):
6262
specified number.
6363
* Use the ``ORDER BY`` clause to sort the results by the specified
6464
key. By default, the results are sorted in the ascending order.
65-
* The ``AT PATH`` clause specifies the path in the Stage to list
65+
* The ``AT`` clause specifies the path in the Stage to list
6666
the files from.
6767
* The ``IN`` clause specifies the ID or the name of the
6868
deployment in which the Stage is attached.
@@ -74,7 +74,7 @@ class ShowStageFilesHandler(SQLHandler):
7474
--------
7575
The following command lists the files at a specific path::
7676
77-
SHOW STAGE FILES IN 'wsg1' AT PATH "/data/";
77+
SHOW STAGE FILES IN 'wsg1' AT "/data/";
7878
7979
The following command lists the files recursively with
8080
additional information::
@@ -393,7 +393,7 @@ class DropStageFolderHandler(SQLHandler):
393393
# Name of deployment
394394
deployment_name = '<deployment-name>'
395395
396-
# Should folers be deleted recursively?
396+
# Should folders be deleted recursively?
397397
recursive = RECURSIVE
398398
399399
Description
@@ -474,7 +474,7 @@ class CreateStageFolderHandler(SQLHandler):
474474
is created. The path must end with a trailing slash (/).
475475
* ``<deployment-id>``: The ID of the deployment in which
476476
the Stage is attached.
477-
* ``<deployment-name>``: The name of the deployment in which
477+
* ``<deployment-name>``: The name of the deployment in
478478
which the Stage is attached.
479479
480480
Remarks

0 commit comments

Comments
 (0)