Skip to content

Commit 523e4c3

Browse files
authored
docs: fix to_* methods docstrings typos (#11013)
1 parent 6032e71 commit 523e4c3

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

ibis/expr/types/core.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ def to_parquet(
669669
Parameters
670670
----------
671671
path
672-
The data source. A string or Path to the parquet file.
672+
A string or Path where the Parquet file will be written.
673673
params
674674
Mapping of scalar parameter expressions to value.
675675
**kwargs
@@ -714,8 +714,6 @@ def to_xlsx(
714714
715715
Parameters
716716
----------
717-
expr
718-
Ibis table expression to write to an excel file.
719717
path
720718
Excel output path.
721719
sheet
@@ -802,7 +800,7 @@ def to_csv(
802800
Parameters
803801
----------
804802
path
805-
The data source. A string or Path to the CSV file.
803+
The data target. A string or Path where the CSV file will be written.
806804
params
807805
Mapping of scalar parameter expressions to value.
808806
**kwargs
@@ -827,7 +825,7 @@ def to_delta(
827825
Parameters
828826
----------
829827
path
830-
The data source. A string or Path to the Delta Lake table directory.
828+
The data target. A string or Path to the Delta Lake table directory.
831829
params
832830
Mapping of scalar parameter expressions to value.
833831
**kwargs
@@ -847,9 +845,9 @@ def to_json(self, path: str | Path, /, **kwargs: Any) -> None:
847845
Parameters
848846
----------
849847
path
850-
The data source. A string or Path to the Delta Lake table.
848+
The data target. A string or Path where the JSON file will be written.
851849
kwargs
852-
Additional, backend-specifc keyword arguments.
850+
Additional, backend-specific keyword arguments.
853851
"""
854852
self._find_backend(use_default=True).to_json(self, path, **kwargs)
855853

0 commit comments

Comments
 (0)