Skip to content

DOC: Update orc.py to say orc instead of parquet #58744

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 1 commit into from
May 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pandas/io/orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def read_orc(
.. versionadded:: 2.0

filesystem : fsspec or pyarrow filesystem, default None
Filesystem object to use when reading the parquet file.
Filesystem object to use when reading the orc file.

.. versionadded:: 2.1.0

Expand All @@ -99,7 +99,7 @@ def read_orc(
--------
>>> result = pd.read_orc("example_pa.orc") # doctest: +SKIP
"""
# we require a newer version of pyarrow than we support for parquet
# we require a newer version of pyarrow than we support for orc

orc = import_optional_dependency("pyarrow.orc")

Expand Down