summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Bessarabov <ivan@bessarabov.ru>2023-12-21 10:09:47 +0000
committerGitHub <noreply@github.com>2023-12-21 12:09:47 +0200
commit03e8b395055747a45f8c12480fd4ed95c2b4e906 (patch)
tree68dea05e026f800fa0c4e18c929f9fd8499102f8
parenta1da26ce85936b700ccefd1e35c279f9d2b21ecb (diff)
Fixing doc (#325)HEADmaster
-rw-r--r--mkdocs/docs/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkdocs/docs/index.md b/mkdocs/docs/index.md
index f66fab6..3d5601c 100644
--- a/mkdocs/docs/index.md
+++ b/mkdocs/docs/index.md
@@ -19,7 +19,7 @@ q allows the following:
q "select c1,c5 from myfile.csv"
# -d '|' sets the input delimiter, -H says there's a header
- q -d , -H "select my_field from myfile.delimited-file-with-pipes"
+ q -d '|' -H "select my_field from myfile.delimited-file-with-pipes"
# -C readwrite writes a cache for the csv file
q -d , -H "select my_field from myfile.csv" -C readwrite