Skip to content

Commit 5b55745

Browse files
authored
Fix some typos. (pandas-dev#47021)
1 parent 15c63a2 commit 5b55745

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

LICENSES/ULTRAJSON_LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Portions of code from MODP_ASCII - Ascii transformations (upper/lower, etc)
2828
https://github.com/client9/stringencoders
2929
Copyright (c) 2007 Nick Galbreath -- nickg [at] modp [dot] com. All rights reserved.
3030

31-
Numeric decoder derived from from TCL library
31+
Numeric decoder derived from TCL library
3232
http://www.opensource.apple.com/source/tcl/tcl-14/tcl/license.terms
3333
* Copyright (c) 1988-1993 The Regents of the University of California.
3434
* Copyright (c) 1994 Sun Microsystems, Inc.

asv_bench/benchmarks/sparse.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ def setup(self, fill_value):
146146

147147
def make_block_array(self, length, num_blocks, block_size, fill_value):
148148
arr = np.full(length, fill_value)
149-
indicies = np.random.choice(
149+
indices = np.random.choice(
150150
np.arange(0, length, block_size), num_blocks, replace=False
151151
)
152-
for ind in indicies:
152+
for ind in indices:
153153
arr[ind : ind + block_size] = np.random.randint(0, 100, block_size)
154154
return SparseArray(arr, fill_value=fill_value)
155155

doc/source/user_guide/io.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3529,7 +3529,7 @@ See the :ref:`cookbook<cookbook.excel>` for some advanced strategies.
35293529
**Please do not report issues when using ``xlrd`` to read ``.xlsx`` files.**
35303530
This is no longer supported, switch to using ``openpyxl`` instead.
35313531

3532-
Attempting to use the the ``xlwt`` engine will raise a ``FutureWarning``
3532+
Attempting to use the ``xlwt`` engine will raise a ``FutureWarning``
35333533
unless the option :attr:`io.excel.xls.writer` is set to ``"xlwt"``.
35343534
While this option is now deprecated and will also raise a ``FutureWarning``,
35353535
it can be globally set and the warning suppressed. Users are recommended to

doc/source/user_guide/style.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
"source": [
613613
"### Acting on the Index and Column Headers\n",
614614
"\n",
615-
"Similar application is acheived for headers by using:\n",
615+
"Similar application is achieved for headers by using:\n",
616616
" \n",
617617
"- [.applymap_index()][applymapindex] (elementwise): accepts a function that takes a single value and returns a string with the CSS attribute-value pair.\n",
618618
"- [.apply_index()][applyindex] (level-wise): accepts a function that takes a Series and returns a Series, or numpy array with an identical shape where each element is a string with a CSS attribute-value pair. This method passes each level of your Index one-at-a-time. To style the index use `axis=0` and to style the column headers use `axis=1`.\n",

0 commit comments

Comments
 (0)