Skip to content

Commit 5856ea6

Browse files
authored
Update fred.py
1 parent 0972894 commit 5856ea6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas_datareader/fred.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def read(self):
2121
-------
2222
data : DataFrame
2323
If multiple names are passed for "series" then the index of the
24-
DataFrame is the outer join of the indicies of each series.
24+
DataFrame is the outer join of the indices of each series.
2525
"""
2626
try:
2727
return self._read()
@@ -37,7 +37,7 @@ def _read(self):
3737
urls = [f"{self.url}?id={n}" for n in names]
3838

3939
def fetch_data(url, name):
40-
"""Utillity to fetch data"""
40+
"""Utility to fetch data"""
4141
resp = self._read_url_as_StringIO(url)
4242
data = read_csv(
4343
resp,

0 commit comments

Comments
 (0)