Skip to content

Commit

Permalink
doc: insert an explicit call example for vcat(). (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
petershintech authored and iblislin committed Jun 9, 2019
1 parent 249fe2c commit 800fedf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/src/combine.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ For example:
using TimeSeries
a = TimeArray([Date(2015, 10, 01), Date(2015, 11, 01)], [15, 16])
b = TimeArray([Date(2015, 12, 01)], [17])
[a; b]
vcat(a, b)
[a; b] # same as vcat(a,b)
```

## `map`
Expand Down

0 comments on commit 800fedf

Please sign in to comment.