From 03e8b395055747a45f8c12480fd4ed95c2b4e906 Mon Sep 17 00:00:00 2001 From: Ivan Bessarabov Date: Thu, 21 Dec 2023 10:09:47 +0000 Subject: [PATCH] Fixing doc (#325) --- mkdocs/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/index.md b/mkdocs/docs/index.md index f66fab68..3d5601ce 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