Skip to content

Commit

Permalink
Improve array_concat examples
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Feb 28, 2023
1 parent dff0408 commit db242a8
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion proposals/array_concat.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,24 @@
},
"examples": [
{
"description": "Concatenates two arrays containing different data type.",
"description": "Concatenates two numerical arrays.",
"arguments": {
"array1": [
1.5,
2.5
],
"array2": [
5
]
},
"returns": [
1.5,
2.5,
5
]
},
{
"description": "Concatenates two arrays containing different data type, may not always be supported.",
"arguments": {
"array1": [
"a",
Expand Down

0 comments on commit db242a8

Please sign in to comment.