@@ -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::
0 commit comments