Skip to content

Commit a1cf7a2

Browse files
authored
Merge pull request #982 from AniketP04/main
Fixed typo in quandl.py moex.py fred.py
2 parents 0bf9f91 + 5856ea6 commit a1cf7a2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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,

pandas_datareader/moex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class MoexReader(_DailyBaseReader):
2828
Time, in seconds, to pause between consecutive queries of chunks. If
2929
single value given for symbol, represents the pause between retries.
3030
chunksize : int, default 25
31-
The number of symbols to download consecutively before intiating pause.
31+
The number of symbols to download consecutively before initiating pause.
3232
session : Session, default None
3333
requests.sessions.Session instance to be used
3434

pandas_datareader/quandl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class QuandlReader(_DailyBaseReader):
3535
Time, in seconds, to pause between consecutive queries of chunks. If
3636
single value given for symbol, represents the pause between retries.
3737
chunksize : int, default 25
38-
Number of symbols to download consecutively before intiating pause.
38+
Number of symbols to download consecutively before initiating pause.
3939
session : Session, default None
4040
requests.sessions.Session instance to be used
4141
api_key : str, optional

0 commit comments

Comments
 (0)