Skip to content

Commit

Permalink
docs[python]: Fix incorrect links (#4602)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Aug 29, 2022
1 parent fbfc716 commit eb7116d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion py-polars/polars/internals/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2623,7 +2623,7 @@ def limit(self: DF, n: int = 5) -> DF:
"""
Get the first `n` rows.
Alias for :func:`head`.
Alias for :func:`DataFrame.head`.
Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions py-polars/polars/internals/expr/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -3265,7 +3265,7 @@ def limit(self, n: int = 10) -> Expr:
"""
Get the first `n` rows.
Alias for :func:`head`.
Alias for :func:`Expr.head`.
Parameters
----------
Expand Down Expand Up @@ -4573,7 +4573,7 @@ def argsort(self, reverse: bool = False, nulls_last: bool = False) -> Expr:
"""
Get the index values that would sort this column.
Alias for `arg_sort`.
Alias for :func:`Expr.arg_sort`.
Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/internals/lazyframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,7 @@ def limit(self: LDF, n: int = 5) -> LDF:
"""
Get the first `n` rows.
Alias for :func:`head`.
Alias for :func:`LazyFrame.head`.
Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions py-polars/polars/internals/series/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ def limit(self, n: int = 10) -> Series:
"""
Get the first `n` rows.
Alias for :func:`head`.
Alias for :func:`Series.head`.
Parameters
----------
Expand Down Expand Up @@ -1602,7 +1602,7 @@ def argsort(self, reverse: bool = False, nulls_last: bool = False) -> Series:
"""
Get the index values that would sort this Series.
Alias for :func:`arg_sort`.
Alias for :func:`Series.arg_sort`.
Parameters
----------
Expand Down

0 comments on commit eb7116d

Please sign in to comment.