Skip to content

Commit

Permalink
fix type in python docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 11, 2022
1 parent c1ebb08 commit 4f1546d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/polars/internals/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def concat(
how
Only used if the items are DataFrames.
One of {"vertical", "diagonal", "horiztonal"}.
One of {"vertical", "diagonal", "horizontal"}.
- Vertical: Applies multiple `vstack` operations.
- Diagonal: Finds a union between the column schemas and fills missing column values with null.
- Horizontal: Stacks Series horizontall and fills with nulls if the lengths don't match.
- Horizontal: Stacks Series horizontally and fills with nulls if the lengths don't match.
Examples
--------
Expand Down

0 comments on commit 4f1546d

Please sign in to comment.