fixed typos in union function doc

pull/503/head
Scott Anderson 2019-10-02 08:56:46 -07:00
parent 2ef3c6052c
commit a62822b210
1 changed files with 2 additions and 2 deletions
content/v2.0/reference/flux/stdlib/built-in/transformations

View File

@ -18,11 +18,11 @@ The output schemas of the `union()` function is the union of all input schemas.
`union()` does not preserve the sort order of the rows within tables.
A sort operation may be added if a specific sort order is needed.
_**Function type:** Transformation_
_**Function type:** Transformation_
_**Output data type:** Object_
```js
union(tables: ["table1", "table2"])
union(tables: [table1, table2])
```
## Parameters