8000 Add specifications for array manipulation functions by kgryte · Pull Request #42 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add specifications for array manipulation functions #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Sep 28, 2020
Prev Previous commit
Next Next commit
Update copy
  • Loading branch information
kgryte committed Sep 14, 2020
commit 448e769cf8166c67fdf4ade615d577436a38b1c8
2 changes: 1 addition & 1 deletion spec/API_specification/manipulation_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Joins a sequence of arrays along an existing axis.

- **axis**: _Optional\[ int ]_

- axis along which the arrays will be joined. If `axis` is `None`, arrays are flattened before concatenation. If `axis` is negative, the function must count from last dimension. Default: `0`.
- axis along which the arrays will be joined. If `axis` is `None`, arrays must be flattened before concatenation. If `axis` is negative, the function must count from last dimension. Default: `0`.

#### Returns

Expand Down
0