Skip to content

Commit 9ae7153

Browse files
committed
Comment spelling cleanup
1 parent 1462b4e commit 9ae7153

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Contributed by Marc Mueller (PR [20156](https://github.com/python/mypy/pull/2015
449449
For best performance, mypy can be compiled to C extension modules using mypyc. This makes
450450
mypy 3-5x faster than when interpreted with pure Python. We now build and upload mypyc
451451
accelerated mypy wheels for `win_arm64` and `cp314t-...` to PyPI, making it easy for Windows
452-
users on ARM and those using the free theading builds for Python 3.14 to realise this speedup
452+
users on ARM and those using the free threading builds for Python 3.14 to realise this speedup
453453
-- just `pip install` the latest mypy.
454454

455455
Contributed by Marc Mueller

mypy/inspections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def cmp_types(x: TypeInfo, y: TypeInfo) -> int:
297297
result = {}
298298
for base in sorted_bases:
299299
if not combined_attrs[base]:
300-
# Skip bases where everytihng was filtered out.
300+
# Skip bases where everything was filtered out.
301301
continue
302302
result[base] = combined_attrs[base]
303303
return result

mypy/plugins/dataclasses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ def _infer_dataclass_attr_init_type(
914914

915915
# Perform a simple-minded inference from the signature of __set__, if present.
916916
# We can't use mypy.checkmember here, since this plugin runs before type checking.
917-
# We only support some basic scanerios here, which is hopefully sufficient for
917+
# We only support some basic scenarios here, which is hopefully sufficient for
918918
# the vast majority of use cases.
919919
if not isinstance(t, Instance):
920920
return default

0 commit comments

Comments
 (0)