You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by br...@apache.org on 2015/12/05 02:59:17 UTC

drill git commit: edit to fix backticks

Repository: drill
Updated Branches:
  refs/heads/gh-pages b581c8060 -> 7fb253c5f


edit to fix backticks


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/7fb253c5
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/7fb253c5
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/7fb253c5

Branch: refs/heads/gh-pages
Commit: 7fb253c5fbd796b218bc9b1a455cb010ad1047d7
Parents: b581c80
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Fri Dec 4 17:58:08 2015 -0800
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Fri Dec 4 17:58:08 2015 -0800

----------------------------------------------------------------------
 _docs/connect-a-data-source/035-plugin-configuration-basics.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/7fb253c5/_docs/connect-a-data-source/035-plugin-configuration-basics.md
----------------------------------------------------------------------
diff --git a/_docs/connect-a-data-source/035-plugin-configuration-basics.md b/_docs/connect-a-data-source/035-plugin-configuration-basics.md
index fd98988..94e5a11 100644
--- a/_docs/connect-a-data-source/035-plugin-configuration-basics.md
+++ b/_docs/connect-a-data-source/035-plugin-configuration-basics.md
@@ -155,8 +155,8 @@ In Drill version 1.4 and later, you can also set the formats attributes defined
 The `table function name` is the table name, the type parameter is the format name, and the other parameters are the fields that the format plugin configuration accepts, as defined in the table above (except for `extensions` which do not apply in this context).
 
 For example, to read a CSV file and parse the header:  
-`select a, b from table(dfs.``path/to/data.csv``(type => 'text',
-fieldDelimiter => ',', extractHeader => true))`
+``select a, b from table(dfs.`path/to/data.csv`(type => 'text',
+fieldDelimiter => ',', extractHeader => true))``
 
 For more information about format plugin configuration see ["Text Files: CSV, TSV, PSV"]({{site.baseurl}}{{site.baseurl}}/docs/text-files-csv-tsv-psv/).