8000 Merge pull request #6005 from seales/SpellingFix · scikit-learn/scikit-learn@317dea8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 317dea8

Browse files
committed
Merge pull request #6005 from seales/SpellingFix
[MRG+1] General spelling fixes
2 parents 3daab8a + 0485ada commit 317dea8

File tree

103 files changed

+147
-147
lines changed

Some content is hidden

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

103 files changed

+147
-147
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# simple makefile to simplify repetetive build env management tasks under posix
1+
# simple makefile to simplify repetitive build env management tasks under posix
22

33
# caution: testing won't work on windows, see README
44

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
environment:
66
global:
77
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
8-
# /E:ON and /V:ON options are not enabled in the batch script intepreter
8+
# /E:ON and /V:ON options are not enabled in the batch script interpreter
99
# See: http://stackoverflow.com/a/13751649/163740
1010
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\continuous_integration\\appveyor\\run_with_env.cmd"
1111
WHEELHOUSE_UPLOADER_USERNAME: sklearn-appveyor

benchmarks/bench_isotonic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
The timings are then output to stdout, or visualized on a log-log scale
88
with matplotlib.
99
10-
This alows the scaling of the algorithm with the problem size to be
10+
This allows the scaling of the algorithm with the problem size to be
1111
visualized and understood.
1212
"""
1313
from __future__ import print_function

continuous_integration/test_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ python --version
1919
python -c "import numpy; print('numpy %s' % numpy.__version__)"
2020
python -c "import scipy; print('scipy %s' % scipy.__version__)"
2121

22-
# Skip tests that require large downloads over the network to save bandwith
22+
# Skip tests that require large downloads over the network to save bandwidth
2323
# usage as travis workers are stateless and therefore traditional local
2424
# disk caching does not work.
2525
export SKLEARN_SKIP_NETWORK_TESTS=1

doc/datasets/twenty_newsgroups_fixture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Fixture module to skip the datasets loading when offline
22
3-
Doctests are skipped if the datasets have not already been dowloaded
3+
Doctests are skipped if the datasets have not already been downloaded
44
and cached in the past.
55
"""
66
from os.path import exists

doc/themes/scikit-learn/static/css/bootstrap.css

10000
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ img {
8787
/* Responsive images (ensure images don't scale beyond their parents) */
8888

8989
max-width: 100%;
90-
/* Part 1: Set a maxium relative to the parent */
90+
/* Part 1: Set a maximum relative to the parent */
9191

9292
width: auto\9;
9393
/* IE7-8 need help adjusting responsive images */

doc/tutorial/machine_learning_map/parse_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def convertToFloat(s, loc, toks):
8383

8484
coordinate = number
8585

86-
#comma or whitespace can seperate values all over the place in SVG
86+
#comma or whitespace can separate values all over the place in SVG
8787
maybeComma = Optional(Literal(',')).suppress()
8888

8989
coordinateSequence = Sequence(coordinate)

doc/tutorial/machine_learning_map/pyparsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ def parseString( self, instring ):
965965
(see L{I{parseWithTabs}<parseWithTabs>})
966966
- define your parse action using the full (s,loc,toks) signature, and
967967
reference the input string using the parse action's s argument
968-
- explictly expand the tabs in your input string before calling
968+
- explicitly expand the tabs in your input string before calling
969969
parseString
970970
"""
971971
ParserElement.resetCache()

examples/applications/plot_out_of_core_classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def progress(cls_name, stats):
284284
minibatch_iterators = iter_minibatches(data_stream, minibatch_size)
285285
total_vect_time = 0.0
286286

287-
# Main loop : iterate on mini-batchs of examples
287+
# Main loop : iterate on mini-batches of examples
288288
for i, (X_train_text, y_train) in enumerate(minibatch_iterators):
289289

290290
tick = time.time()

examples/applications/plot_stock_market.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
###############################################################################
8080
# Retrieve the data from Internet
8181

82-
# Choose a time period reasonnably calm (not too long ago so that we get
82+
# Choose a time period reasonably calm (not too long ago so that we get
8383
# high-tech firms, and before the 2008 crash)
8484
d1 = datetime.datetime(2003, 1, 1)
8585
d2 = datetime.datetime(2008, 1, 1)

0 commit comments

Comments
 (0)
0