Skip to content

Commit 0d51bed

Browse files
author
luzpaz
committed
Misc. Typo fixes
Both user and non-user facing. Found via `codespell -q 3 -I ../pandas-whitelist.txt` whereby the whitelist consisted of: ``` behaviour indicies initialise initialised initialising resetted thru writeable ```
1 parent e567949 commit 0d51bed

File tree

158 files changed

+308
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+308
-308
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ matrix:
1111
environment:
1212
global:
1313
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
14-
# /E:ON and /V:ON options are not enabled in the batch script intepreter
14+
# /E:ON and /V:ON options are not enabled in the batch script interpreter
1515
# See: http://stackoverflow.com/a/13751649/163740
1616
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\run_with_env.cmd"
1717
clone_folder: C:\projects\pandas

asv_bench/benchmarks/frame_ctor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
try:
55
from pandas.tseries.offsets import Nano, Hour
66
except ImportError:
7-
# For compatability with older versions
7+
# For compatibility with older versions
88
from pandas.core.datetools import * # noqa
99

1010
from .pandas_vb_common import setup # noqa

asv_bench/benchmarks/pandas_vb_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def remove(self, f):
4343
def teardown(self, *args, **kwargs):
4444
self.remove(self.fname)
4545

46-
# Compatability import for lib
46+
# Compatibility import for lib
4747
for imp in ['pandas._libs.lib', 'pandas.lib', 'pandas_tseries']:
4848
try:
4949
lib = import_module(imp)

doc/source/_static/banklist.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="UTF-8">
88
<!-- Unicode character encoding -->
99
<meta http-equiv="X-UA-Compatible" content="IE=edge">
10-
<!-- Turns off IE Compatiblity Mode -->
10+
<!-- Turns off IE Compatibility Mode -->
1111
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
1212
<!-- Makes it so phones don't auto zoom out. -->
1313
<meta name="author" content="DRR">
@@ -4849,7 +4849,7 @@ <h1 class="page_title">Failed Bank List</h1>
48494849
<ul>
48504850
<li><a href="/about/freedom/" title="Freedom of Information Act (FOIA) Service Center">Freedom of Information Act (FOIA) Service Center</a></li>
48514851
<li><a href="/open/" title="FDIC Open Government Webpage">FDIC Open Government Webpage</a></li>
4852-
<li><a href="/about/diversity/nofear/" title="No FEAR Act Data">No FEAR Act Data</a></li>
4852+
<li><a href="/about/diversity/nofear/" title="No FEAR Act Data">No FEAR Act Data</a></li>
48534853
</ul>
48544854
</div>
48554855
<div id="responsive_footer-small">

doc/source/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ methods. In general, all classes and functions exposed in the top-level
1010
``pandas.*`` namespace are regarded as public.
1111

1212
Further some of the subpackages are public, including ``pandas.errors``,
13-
``pandas.plotting``, and ``pandas.testing``. Certain functions in the the
13+
``pandas.plotting``, and ``pandas.testing``. Certain functions in the
1414
``pandas.io`` and ``pandas.tseries`` submodules are public as well (those
1515
mentioned in the documentation). Further, the ``pandas.api.types`` subpackage
1616
holds some public functions related to data types in pandas.

doc/source/basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ Mixed Dtypes
946946
++++++++++++
947947

948948
When presented with mixed dtypes that cannot aggregate, ``.agg`` will only take the valid
949-
aggregations. This is similiar to how groupby ``.agg`` works.
949+
aggregations. This is similar to how groupby ``.agg`` works.
950950

951951
.. ipython:: python
952952

doc/source/computation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ These are created from methods on ``Series`` and ``DataFrame``.
237237
r = s.rolling(window=60)
238238
r
239239
240-
These object provide tab-completion of the avaible methods and properties.
240+
These object provide tab-completion of the available methods and properties.
241241

242242
.. code-block:: ipython
243243

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@
380380
'import pandas as pd',
381381
# This ensures correct rendering on system with console encoding != utf8
382382
# (windows). It forces pandas to encode its output reprs using utf8
383-
# whereever the docs are built. The docs' target is the browser, not
383+
# wherever the docs are built. The docs' target is the browser, not
384384
# the console, so this is fine.
385385
'pd.options.display.encoding="utf8"'
386386
]

doc/source/contributing.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,16 @@ to build the documentation locally before pushing your changes.
124124

125125
.. _contributiong.dev_c:
126126

127-
Installing a C Complier
127+
Installing a C Compiler
128128
~~~~~~~~~~~~~~~~~~~~~~~
129129

130130
Pandas uses C extensions (mostly written using Cython) to speed up certain
131131
operations. To install pandas from source, you need to compile these C
132-
extensions, which means you need a C complier. This process depends on which
132+
extensions, which means you need a C compiler. This process depends on which
133133
platform you're using. Follow the `CPython contributing guidelines
134134
<https://docs.python.org/devguide/setup.html#build-dependencies>`_ for getting a
135-
complier installed. You don't need to do any of the ``./configure`` or ``make``
136-
steps; you only need to install the complier.
135+
compiler installed. You don't need to do any of the ``./configure`` or ``make``
136+
steps; you only need to install the compiler.
137137

138138
For Windows developers, the following links may be helpful.
139139

@@ -151,7 +151,7 @@ Let us know if you have any difficulties by opening an issue or reaching out on
151151
Creating a Python Environment
152152
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
153153

154-
Now that you have a C complier, create an isolated pandas development
154+
Now that you have a C compiler, create an isolated pandas development
155155
environment:
156156

157157
- Install either `Anaconda <https://www.anaconda.com/download/>`_ or `miniconda

doc/source/developer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ where ``KeyValue`` is
4040
}
4141
4242
So that a ``pandas.DataFrame`` can be faithfully reconstructed, we store a
43-
``pandas`` metadata key in the ``FileMetaData`` with the the value stored as :
43+
``pandas`` metadata key in the ``FileMetaData`` with the value stored as :
4444

4545
.. code-block:: text
4646

0 commit comments

Comments
 (0)