Skip to content

Commit 645b86c

Browse files
committed
ENH: pandas read_* wildcard pandas-dev#15904
1 parent ad88cd9 commit 645b86c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/cookbook.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ You can use the same approach to read all files matching a pattern. Here is an
967967
files = glob.glob('file_*.csv')
968968
result = pd.concat([pd.read_csv(f) for f in files], ignore_index=True)
969969
970-
Finally, this strategy will work with the other ``read_*(...)`` functions described in the :ref:`io docs<io>`.
970+
Finally, this strategy will work with the other ``pd.read_*(...)`` functions described in the :ref:`io docs<io>`.
971971

972972
.. ipython:: python
973973
:supress:

0 commit comments

Comments
 (0)