Skip to content

Commit 18f0fb3

Browse files
committed
Merge pull request #11048 from kawochen/CLN-DOC-misc
DOC/CLN: typo and redundant code
2 parents c16e3b8 + 3f87954 commit 18f0fb3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

doc/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Often it will be necessary to rebuild the C extension after updating::
114114
Building the documentation
115115
^^^^^^^^^^^^^^^^^^^^^^^^^^
116116

117-
So how do you build the docs? Navigate to your local the folder
117+
So how do you build the docs? Navigate to your local folder
118118
``pandas/doc/`` directory in the console and run::
119119

120120
python make.py html

doc/source/gotchas.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ concise means of selecting data from a pandas object:
297297
df
298298
df.ix[['b', 'c', 'e']]
299299
300-
This is, of course, completely equivalent *in this case* to using th
300+
This is, of course, completely equivalent *in this case* to using the
301301
``reindex`` method:
302302

303303
.. ipython:: python
@@ -455,7 +455,7 @@ parse HTML tables in the top-level pandas io function ``read_html``.
455455

456456
* Drawbacks
457457

458-
* |lxml|_ does *not* make any guarantees about the results of it's parse
458+
* |lxml|_ does *not* make any guarantees about the results of its parse
459459
*unless* it is given |svm|_.
460460

461461
* In light of the above, we have chosen to allow you, the user, to use the

pandas/core/groupby.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ def __init__(self, key=None, level=None, freq=None, axis=0, sort=False):
218218
self.obj=None
219219
self.indexer=None
220220
self.binner=None
221-
self.grouper=None
222221

223222
@property
224223
def ax(self):
@@ -424,7 +423,7 @@ def _get_indices(self, names):
424423
""" safe get multiple indices, translate keys for datelike to underlying repr """
425424

426425
def get_converter(s):
427-
# possibly convert to they actual key types
426+
# possibly convert to the actual key types
428427
# in the indices, could be a Timestamp or a np.datetime64
429428
if isinstance(s, (Timestamp,datetime.datetime)):
430429
return lambda key: Timestamp(key)

0 commit comments

Comments
 (0)