Skip to content

Commit abefd0a

Browse files
committed
[DATALAD RUNCMD] Do interactive fixing of leftover ambigous typos
=== Do not change lines below === { "chain": [], "cmd": "codespell -w -i 3 -C 2", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent c82489b commit abefd0a

File tree

15 files changed

+18
-18
lines changed

15 files changed

+18
-18
lines changed

docs/dev/design/better-doc-urls-handling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Look up process
6161
---------------
6262

6363
Proxito will process all documentation requests from a single *docs serve* view,
64-
exluding ``/_`` URLs.
64+
excluding ``/_`` URLs.
6565

6666
This view then will process the current URL using the root project as follows:
6767

docs/dev/design/build-images.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ How do we remove an old Python version?
287287
At some point, an old version of Python will be deprecated (eg. 3.4) and will be removed.
288288
To achieve this, we can just remove the pre-compiled Python version from the cache.
289289

290-
However, unless it's strictly neeed for some specific reason, we shouldn't require to remove support for a Python version
290+
However, unless it's strictly needed for some specific reason, we shouldn't require to remove support for a Python version
291291
as long as we support the Ubuntu OS version where this version was compiled for.
292292

293293
In any case, we will know which projects are using these versions because they are pinning these specific versions in the config file.

docs/dev/design/redirects.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ We can do this in three ways:
386386
We could limit the number of redirects that can be created with query arguments,
387387
or the number of redirects in general.
388388

389-
We hava had only one user requesting this feature,
389+
We have had only one user requesting this feature,
390390
so this is not a priority.
391391

392392
Migration

docs/dev/search-integration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ will be indexed as part of the section content:
190190
<h1 id="3">This is also a valid section title</h1>
191191
</header>
192192
<p>
193-
Thi is the content of the third section.
193+
This is the content of the third section.
194194
</p>
195195
</div>
196196

docs/user/reference/analytics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Analytics for search and traffic
55

66
Read the Docs supports analytics for search and traffic.
77
When someone reads your documentation,
8-
we collect data about the vist and the referer
8+
we collect data about the visit and the referer
99
with full respect of the privacy of the visitor.
1010

1111

readthedocs/api/v2/views/model_views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ class NotificationViewSet(DisableListEndpoint, CreateModelMixin, UserSelectViewS
370370
371371
This endpoint is currently used only internally by the builder.
372372
Notifications are attached to `Build` objects only when using this endpoint.
373-
This limitation will change in the future when re-implementing this on APIv3 if neeed.
373+
This limitation will change in the future when re-implementing this on APIv3 if needed.
374374
"""
375375

376376
parser_classes = [JSONParser, MultiPartParser]

readthedocs/api/v3/permissions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class HasEmbedAPIAccess(BasePermission):
1010
"""
1111
Check if the project being accessed has access to the Embed API.
1212
13-
The embedded API V3 allows getting content from external sites tha
13+
The embedded API V3 allows getting content from external sites that
1414
aren't attached to a project. Those sites are restricted to the ones
1515
from ``RTD_EMBED_API_EXTERNAL_DOMAINS``, so we just allow that.
1616
"""

readthedocs/core/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ class NullCharactersMiddleware:
216216
when trying to save the content containing a NULL character into the
217217
database, producing a 500 and creating an event in Sentry.
218218
219-
NULL characters are also used as an explotation technique, known as "Null Byte Injection".
219+
NULL characters are also used as an exploitation technique, known as "Null Byte Injection".
220220
"""
221221

222222
def __init__(self, get_response):

readthedocs/core/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def extract_valid_attributes_for_model(model, attributes):
355355
attributes = attributes.copy()
356356
valid_field_names = {field.name for field in model._meta.get_fields()}
357357
valid_attributes = {}
358-
# We can't change a dictionary while interating over its keys,
358+
# We can't change a dictionary while iterating over its keys,
359359
# so we make a copy of its keys.
360360
keys = list(attributes.keys())
361361
for key in keys:

readthedocs/doc_builder/backends/sphinx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, *args, **kwargs):
5252
# `absolute_host_output_dir` because it's not defined in the host. So,
5353
# we have to re-calculate its value. We will remove this limitation
5454
# when we execute the whole building from inside the Docker container
55-
# (instead behing a hybrid as it is now)
55+
# (instead being a hybrid as it is now)
5656
#
5757
# We need to have two different paths that point to the exact same
5858
# directory. How is that? The directory is mounted into a different
@@ -103,7 +103,7 @@ def __init__(self, *args, **kwargs):
103103
#
104104
# IMO, if there are multiple config files,
105105
# the build should fail immediately communicating this to the user.
106-
# This can be achived by unhandle the exception here
106+
# This can be achieved by unhandle the exception here
107107
# and leaving `on_failure` Celery handle to deal with it.
108108
#
109109
# In case there is no config file, we should continue the build

0 commit comments

Comments
 (0)