Skip to content

Commit b56f17f

Browse files
homiziadojreback
authored andcommitted
DOC: Fix typos
closes pandas-dev#12692
1 parent fc0367a commit b56f17f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3624,7 +3624,7 @@ def combine(self, other, func, fill_value=None, overwrite=True):
36243624
other_mask = isnull(otherSeries)
36253625

36263626
# don't overwrite columns unecessarily
3627-
# DO propogate if this column is not in the intersection
3627+
# DO propagate if this column is not in the intersection
36283628
if not overwrite and other_mask.all():
36293629
result[col] = this[col].copy()
36303630
continue

pandas/core/internals.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def array_dtype(self):
158158

159159
def make_block(self, values, placement=None, ndim=None, **kwargs):
160160
"""
161-
Create a new block, with type inference propogate any values that are
161+
Create a new block, with type inference propagate any values that are
162162
not specified
163163
"""
164164
if placement is None:

pandas/io/stata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@ def _check_column_names(self, data):
19331933
* Variables with names that are too long
19341934
19351935
When an illegal variable name is detected, it is converted, and if
1936-
dates are exported, the variable name is propogated to the date
1936+
dates are exported, the variable name is propagated to the date
19371937
conversion dictionary
19381938
"""
19391939
converted_names = []

pandas/tseries/index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ def _can_fast_union(self, other):
11261126
return (right_start == left_end + offset) or right_start in left
11271127
except (ValueError):
11281128

1129-
# if we are comparing an offset that does not propogate timezones
1129+
# if we are comparing an offset that does not propagate timezones
11301130
# this will raise
11311131
return False
11321132

pandas/tseries/tests/test_resample.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2029,7 +2029,7 @@ def test_resample_tz_localized(self):
20292029
assert_series_equal(result, expected)
20302030

20312031
# GH 6397
2032-
# comparing an offset that doesn't propogate tz's
2032+
# comparing an offset that doesn't propagate tz's
20332033
rng = date_range('1/1/2011', periods=20000, freq='H')
20342034
rng = rng.tz_localize('EST')
20352035
ts = DataFrame(index=rng)

0 commit comments

Comments
 (0)