fixed typo and added info that union can take any number of dataSources

This commit is contained in:
Igal Levy 2014-10-31 11:07:55 -07:00
parent 0906b21079
commit e07b02f54b
1 changed files with 2 additions and 2 deletions

View File

@ -17,12 +17,12 @@ The table data source is the most common type. It's represented by a string, or
``` ```
### Union Data Source ### Union Data Source
This data source unions two table data sources. This data source unions two or more table data sources.
```json ```json
{ {
"type": "union", "type": "union",
"dataSources": ["<string_value1>", "string_value2>"] "dataSources": ["<string_value1>", "<string_value2>", "<string_value3>", ... ]]
} }
``` ```