From e07b02f54b0371f6d257d3abc40fbde239c08c0a Mon Sep 17 00:00:00 2001 From: Igal Levy Date: Fri, 31 Oct 2014 11:07:55 -0700 Subject: [PATCH] fixed typo and added info that union can take any number of dataSources --- docs/content/DataSource.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/DataSource.md b/docs/content/DataSource.md index 771832627e5..9c9fb017631 100644 --- a/docs/content/DataSource.md +++ b/docs/content/DataSource.md @@ -17,12 +17,12 @@ The table data source is the most common type. It's represented by a string, or ``` ### Union Data Source -This data source unions two table data sources. +This data source unions two or more table data sources. ```json { "type": "union", - "dataSources": ["", "string_value2>"] + "dataSources": ["", "", "", ... ]] } ```